gow icon indicating copy to clipboard operation
gow copied to clipboard

Missing watch mode for Go commands. Watch Go files and execute a command like "go run" or "go test"

Results 14 gow issues
Sort by recently updated
recently updated
newest added

Installation issue using go1.13.15 ```shell build github.com/mitranim/gow: cannot load io/fs: malformed module path "io/fs": missing dot in first path element ``` which gow version should I use?

This is example of gow based on fsnotify/fsnotify Main goals: - it works even if in cwd() are "permission denied" folders - it automatically ignores hidden folders (like `.git`, `.idea`)...

When running `go test ./...` Directories prefiexed with dot : ``` .mongo-data ``` in my case, is ignored by `go` Using `gow test ./...` seems to reading that directory, The...

Add to instllation as requirement? https://github.com/mitranim/gow#installation ``` go get -u github.com/mitranim/gow # github.com/mitranim/gow /usr/local/Cellar/go/1.16/libexec/pkg/tool/darwin_amd64/link: /usr/local/Cellar/go/1.16/libexec/pkg/tool/darwin_amd64/link: running strip failed: signal: abort trap dyld: Library not loaded: @rpath/libcodedirectory.dylib Referenced from: /Library/Developer/CommandLineTools/usr/bin/strip Reason:...

got this when installing on Windows 10 ``` $ go get -u github.com/mitranim/gow # github.com/mitranim/gow ..\..\..\go\src\github.com\mitranim\gow\gow.go:97:15: undefined: unix.Termios ..\..\..\go\src\github.com\mitranim\gow\gow.go:138:31: cannot use syscall.Stdin (type syscall.Handle) as type int in argument to...

Recently I have an issue because I did not update the repo of gow on my local machine. Would it be possible to publish a tap with the binary to...

`gow -g` is requiring that a command argument be passed, even if the script being called does not need them. Passing an empty argument seems to work around this, but...

Firstly, thanks for creating a great project! I'm looking to integrate this into another CLI tool and am wondering how open you are to that. I'm happy to fork and...

Emacs writes a temporary file as soon as you start editing a file. When you hit save, it removes the temporary file. This triggers `gow`, since the extension is still...

It's tempting to do something like `gow run main.go < input.txt`, but this will effectively run the application with that input _once_, and then basically freeze because the application is...