Gary Burd
Gary Burd
I recommend using zero to indicate session cookies (no expiration specified). If somebody wants an expiration the far future, then let them set it explicitly.
> remove the concept of "remote plugins" Delete the [plugin](https://pkg.go.dev/github.com/neovim/[email protected]/nvim/plugin) package and any references to that package in the documentation. > instead, any Go module that imports the go-client can...
@justinmk Yes, it's already supported. I propose the following: - Prepare for plugin deprecation. - Move [plugin documentation](https://github.com/neovim/go-client/blob/9b44fee9cf8b370d8b3372565be66a5208c05bc5/README.md#L9-L70) from the top-level README.md to new file nvim/plugin/README.md. - Add deprecation notice...
@justinmk I wanted to wait on 27949 before adding an API in case the work on 27949 exposes additional requirements for the API. If you think things are baked enough,...
**TestAPI/Command/Commands/Nvim:** Test fails decoding a msgpack nil to the [Command.Complete](https://pkg.go.dev/github.com/neovim/go-client/nvim#Command.Complete) field. Is nil and expected value for "command"? **TestAPI/Highlight/Nvim:** The test expects the ctermfg and ctermbg fields to be set...
The code in [my comment](https://github.com/neovim/go-client/issues/167#issuecomment-2106427175) was not compiled or tested. The comment is missing the Lua side of the code. I'll post a working example in a few days.
I posted an example of a plugin written in Lua calling functions written in Go. [Example](https://github.com/neovim/go-client/tree/main/examples/remote).