Pavel Popov

Results 5 issues of Pavel Popov

Using `meow-beginning/end-of-thing` and then `repeat` opens a dialog again, but my expectation was that it would repeat without confirmation. The use-case is to "move up by paragraphs", by `[p''''''`. How...

Go playground has a multi-file support, like https://play.golang.org/p/rq4J90MxTKJ ``` package main import ( "play.ground/foo" ) func main() { foo.Bar() } -- go.mod -- module play.ground -- foo/foo.go -- package foo...

question

Hello Adam, thank you for the package (and for many others), I found it more clean and usable than any other similar packages I tried (gum road, better-jumper). What I...

Doing `log.Fatal` or `os.Exit` anywhere outside of `main` scope is bad - it may lead to a corrupted state. The shutdown should be graceful so goroutines can clean up after...

enhancement

I'm using this action to run tests using babashka via bb_cmd with non-zero code meaning tests failure, but the output is written to stdout, so in this case there is...