dchapes
dchapes
This (installing to `$GOPATH/bin/`) is standard Go behaviour. If you intend to use Go more more than just building/installing this one tool I'd recommend reading some of the Go documentation,...
Note: I use mercurial with hggit so I'm not sure if the file copy of `main.go` to `cmd/pxl/main.go` was correctly detected as a repository file copy on the conversion to...
FYI, if #11 and #10 get completed then the `Graphemes` struct won't do any allocation and this wouldn't be needed.
@charlievieth again, as with my previous comment, if this package uses an internal `string` representation it should just ditch the `[]rune` conversion entirely.
@charlievieth the way to avoid the conversions is to re-write the code in this package to not use []rune internally. Doing so speeds up common operations and only has slight...
See `go help packages`: > Many commands apply to a set of packages: > > go action [packages] > > Usually, [packages] is a list of import paths. [The help...
Works for me: > pwd [subdir of $GOPATH] > go version go version go1.14.3 freebsd/amd64 > go env GOMOD [no output, e.g. no go.mod found] > env GO111MODULE=on go env...
> It's obviously unix-specific. It's linux specific¹. Other unix variants do not have fallocate. As with all use of package `syscall`, the Go source file importing it should have an...
> an alias for Ctrl-C that empties the line IMO, if system line editing can't be used (lots of reasons for that) then that is what should be (partially) emulated....
This was fixed in PR #236 by @ncw and merged in 2ff630277754813b198ae96036e28e254d2c72bf by @scrouthtv. There hasn't been a tagged released since then, nor has the broken v1.1.0 been retracted. If...