Nelo Mitranim
Nelo Mitranim
Thanks for notifying me about the issue. I only use Sublime Text these days and didn't know about the Emacs behavior. I wonder how many people couldn't use `gow` because...
I'm considering mirroring `watchexec` by adding support for gitignore patterns: * Explicit `-i` would use gitignore matching, rather than exact matching or directory matching. * Add a boolean flag for...
It sounds like you want generated Go files to trigger `gow`, and it makes sense to me. Some people want a slightly different workflow where running `go generate` is part...
To clarify the error message you're seeing: by default, `gow` tries to switch the terminal into "raw mode" which allows to support hotkeys; when this operation fails, it logs this...
See the following changes: https://github.com/mitranim/gow/compare/87df6e48eec654d4e4dfa9ae4c9cdb378cb3796b...478cc6665328b5fc69dd83a4a31c9a60f63625c5. To summarize, there were multiple issues: * By default, `gow` switches the terminal from "cooked mode" to "raw mode", violating many common assumptions about terminal...
Pretty sure this is already possible via `-w=testdata`. 🙂
Minor correction: `-w` would require you to list the path to each `testdata` (either comma-separated or by repeating the `-w` flag with another value). There's currently no support for specifying...
I have a tentative local implementation that would add new flags `-W` (counterpart to `-w`) and `-I` (counterpart to `-i`) that use `filepath.Match` for glob-like functionality. It supports `*` to...
I'd like to step away from specific scopes and classify the problem. Apologies for the infodump. --- From a compiler's perspective, **identifiers can be divided into**: * Closed-set identifiers: keywords...
Of course. I'm all for compatibility. There isn't much to gain, and much to lose, by breaking the existing conventions. But I feel it would be useful to rebuild our...