We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The pager hangs and does nothing e.g.
package main import ( "bytes" "github.com/noborus/ov/oviewer" ) func main() { doc, err := oviewer.NewDocument() if err != nil { panic(err) } if err := doc.ReadAll(bytes.NewBufferString("hiho")); err != nil { panic(err) } ov, err := oviewer.NewOviewer(doc) if err != nil { panic(err) } if err := ov.Run(); err != nil { panic(err) } } ```
The text was updated successfully, but these errors were encountered:
I was able to confirm that the code shown works on windows 10, but I don't know the mingw environment. sorry.
Sorry, something went wrong.
Sorry, meant Git Bash. To test: Just install Git with Git Bash on Windows and run the generated binary in Git Bash.
I tried to install it and it worked.
$ /mingw64/bin/git --version git version 2.41.0.windows.3
$ file /c/Users/noborus/dev/bin/ov /c/Users/noborus/dev/bin/ov: PE32+ executable (console) x86-64 (stripped to external PDB), for MS Windows, 13 sections
Oops, sorry. The code above also worked.
No branches or pull requests
The pager hangs and does nothing
e.g.
The text was updated successfully, but these errors were encountered: