Gerard Roche
Gerard Roche
Closing as this is a limitation in Sublime Text so there isn't much I can do about right now. I've added it to the known issues section on the roadmap,...
I will have a beta version of a input method plugin in the upcoming version 1.33.0. It will allow you to switch the input method on entering and exiting insert...
Does `viw"0p` do it? Then repeat it with `.`. You can map it: `nnoremap viw"0p` the map is also repeatable.
Undoing hunks can be mapped: ``` let mapleader=, nnoremap hu :RevertHunk ``` Read https://blog.gerardroche.com/2022/11/13/undoing-diff-hunks-in-neovintageous/
You should be able undo it with `u` or the `Ctrl+z` and `Ctrl+u` built-in st commands. Not sure what the difference is between the two built-in st undo commands. I...
If you use the ctrl keys in neo, you can enter insert mode and many ctrl keys will now invoke the built-in st commands. I use this quirk a lot...
guillermooo is working on the next version of Vintageous, "Six" (https://github.com/guillermooo/Six) so Vintageous is dead. Six is closed source so I too am looking for a fork or to make...
No, but I think that would be a good feature. In the meantime, if all your actual projects are git version controlled, you could set `sesame.vcs` to true. This would...
I've also started a fork. I don't like vim-plus because I don't like the idea of moving away from standard vim. I've [added some invaluable windowing commands](https://github.com/gerardroche/Vintageous/blob/master/CHANGELOG.md) and begun cleaning...
I think adding these keymaps will do it for you: ``` {"keys": ["ctrl+["], "command": "press_key", "args": {"key": ""}, "context": [{"key": "vi_command_mode_aware"}]}, {"keys": ["ctrl+["], "command": "_enter_normal_mode", "args": {"mode": "mode_insert"}, "context": [{"key":...