go-client
go-client copied to clipboard
Nvim Go client
example: https://github.com/neovim/go-client/actions/runs/9061896916/job/24894617688 partial list of failures: ``` 2024-05-13T11:14:00.4084360Z --- FAIL: TestAPI/Command (0.00s) 2024-05-13T11:14:00.4084900Z --- FAIL: TestAPI/Command/Commands (0.00s) 2024-05-13T11:14:00.4085893Z --- FAIL: TestAPI/Command/Commands/Nvim (0.00s) 2024-05-13T11:14:00.4086628Z --- FAIL: TestAPI/Command/Commands/Batch (0.00s) ... 2024-05-13T11:14:00.4106998Z ---...
# Problem The design, and usage, of remote plugins can be simplified, as described in https://github.com/neovim/neovim/issues/27949 tl;dr: - remove the concept of "remote plugins" - instead, any Go module that...
There is an example of writing a plugin which adds Hello command to Nvim On the step 3 "Add the following plugin to Nvim:" there is a code example written...
I made another change that I'm worried might not be the right direction: Here https://github.com/neovim/go-client/pull/184/files#diff-4686cdf50ccf547850a2e89191f11c343519caef6fd7718fd73b7a1480606bd0L3843 I moved away from using the color map based on https://neovim.io/doc/user/syntax.html#ctermbg. I'm not sure if...
In native lua i can do: ``` :lua vim.api.nvim_open_win(vim.api.nvim_create_buf(false, true), true, {relative='editor', width=50, height=10, row=5, col=10, style='minimal', border='rounded', zi ndex=50, title='test', title_pos='center'}) ``` however via go plugin, this field is...
I don't know if it's related to __go-client__ or __neovim__, so I'm sorry if it's off-topic. I'm trying to add support for proportional fonts to [goneovim](https://github.com/akiyosi/goneovim), and I feel like...
here's the output from the compare ``` ❯ go run api_tool.go -compare > nvim_get_hl_ns(opts Dictionary) Integer { name(nvim_get_hl_ns) } > nvim_tabpage_set_win(tabpage Tabpage, win Window) void { name(nvim_tabpage_set_win) } > nvim_ui_term_event(event...