Fazlul Shahriar
Fazlul Shahriar
Sorry, maybe I should've create a separate PR for the `$path` change, which is fixing a different issue on plan9. It's just a port of [an upstream CL](https://go-review.googlesource.com/126608). As for...
You can execute `Get` in the window to reload the file in `gopls`. That usually works if the set of files didn't change, but if you add/remove files, `gopls` might...
I think it's failing to parse `CodeAction` result while doing the Format. `CodeAction.command` should be of type `Command` (not `string`) according to the spec. However, `CodeAction` result can be `(Command...
I've added a `-rpc.trace` flag to acme-lsp for easier debugging. I was able to reproduce your problems. To summarize: * `L fmt`: `textDocument/codeAction` is returning `[]Command` instead of `[]CodeAction` *...
I certainly want to get acme-lsp working with all LSP servers that follow the LSP spec. It just hasn't been tested with many servers. In this case, it looks like...
nucular has a better implementation, which uses xgb: https://github.com/aarzilli/nucular/blob/master/clipboard/clipboard_linux.go
@henesy I think `Lock` is supposed to block until it acquires the lock (the posix implementation doesn't use `LOCK_NB` with `flock`). Maybe we can do something similar to the [lockedfile](https://github.com/golang/go/blob/da4d58587e0e4028ea384580053c3c455127e446/src/cmd/go/internal/lockedfile/lockedfile_plan9.go#L44)...
I'll be sending a PR for Plan 9 support soon. It's not really possible to implement Lock/Unlock using the "exclusive use" bit: > Per http://man.cat-v.org/plan_9/5/stat: “Exclusive use files may be...
@KSepetanc I've created a PR for ZipFile v0.9.2: https://github.com/JuliaRegistries/General/pull/14950
There is a good demo by Russ here: https://research.swtch.com/acme Also read the acme and sam papers mentioned in that blog post. Then there is acme(1) and acme(4) man pages. I'd...