Gerard Roche
Gerard Roche
@sourcevault you can set environment variables on Windows. It's Somewhere is system settings, look for Environment Variables. Here in the Vim docs it has instructions: https://github.com/NeoVintageous/NeoVintageous/blob/dec805b6cce9c80aefae6d7f60e18e31badbdf5c/res/doc/os_dos.txt#L56 You can set environment...
Closing this but I've added this to the list of suggestions for future plugin implementations here: https://github.com/NeoVintageous/NeoVintageous/issues/855
fyi there was a typo in documentation for the setting: ``` vintageous_exit_when_quitting_last_window ``` Should only have one "t". ``` vintageous_exit_when_quiting_last_window ``` I would bet this was the issue. You probably...
Doh. The correct spelling is with two t's. So the documentation was right and the typo was in the code. I'll have to fix the spelling and deprecate the misspelled...
Also, ZZ and :xit are not respecting the setting. In the next version ZZ and :xit will be the same as :wq. In the meantime you can map it: ```...
Closing this but I've added this to the list of suggestions for future plugin implementations here: https://github.com/NeoVintageous/NeoVintageous/issues/855
Can you explain an example use case? What functionality do you want to hook into? If the command used by the mouse event is available you can map to it,...
Dup of https://github.com/NeoVintageous/NeoVintageous/issues/757
I decided to add specific support for lsp saving. Enable `vintageous_lsp_save` to override `save` via `:w` to handle LSP Code-Actions-On-Save. The reasons I chose a specific support instead of a...
A rough implementation of `g;` and `g,` will be available in the next release. I might do `gi` too because that's just adding enter insert after `g;`. I don't think...