KillTheMule
KillTheMule
I'd not be in favor of this, I need Esc in the terminal for other things. If it's configurable I don't mind that much, sure.
Which begs the age-old question: WWVD (what would vim do?)? I mean, vim has a terminal as well, so what's its key combo for that? My vote would go out...
You could use `lsof -p {pid}` to find out what files your process has open, and select the socket from that list.
Hey sorry for leaving this open so long, I have a hard time finding time for this project. I think I can work at it again real soon, but first...
So I'll be putting in some inline questions for @smolck who wants to take over here.
That might just be feasible as well :)
Not all is generated, have a look at https://github.com/KillTheMule/nvim-rs/blob/master/src/neovim_api_manual.rs. If we figure out something good, changing the generating script can follow.
So, generally there's not facility to get sent all aucmds via rpc, you'd need to install a handler and send them to your plugin, as you mentioned. Not sure it's...
Yeah, UIs embed neovim, contrary to "other" plugins. There would be several to look at (gnvim, neovim-gtk) if you need more ;) You can find the API documentation at https://neovim.io/doc/user/api.html#api-buffer-updates,...
So there are [3 instances](https://docs.rs/nvim-rs/0.4.0/nvim_rs/?search=set_option) of a `set_option` function. You probably mean the method on `Buffer`? It does [use `nvim_buf_set_option`](https://docs.rs/nvim-rs/0.4.0/src/nvim_rs/neovim_api.rs.html#262-276) indeed, but it also passes the buffer id. Do you...