Gerard Roche
Gerard Roche
Yes, I'll add the setting. I might add it in the next patch rather than the next minor version.
@doei I'll be cutting 1.15.1, which has the new setting, in a few minutes so it should be available to upgrade in Package Control shortly.
> In the SO post it says you can press instead of just to preserve the whitespace, but I couldn't get Vim to do that. > > It was noted...
I'm looking into vim-easymotion, maybe 1.4 or 1.5. vim-xkbswitch is probably a little too big in scope and the sublime core api capabilities is probably be a blocker.
The current version is 1.3 and we're using a [semver](http://semver.org/)-ish versioning. Adding a new plugin is a big enough feature addition to bump the minor version.
I'm afraid there's no documentation for writing plugins. The current plugin api is a bit of a mess. The only way to learn is to look at the existing plugins...
With the latest 1.4.0 release you map to Sublime Text commands, which means you can map to commands provided by plugins like [AceJump](https://github.com/ice9js/ace-jump-sublime) (emacs style version of EasyMotion, the [EasyMotion](https://packagecontrol.io/packages/EasyMotion)...
Looks like a bug in how some remaps are handled. `e` is a motion an `d` is an operator. It looks like there's a bug when remapping some motions to...
Relates to https://github.com/NeoVintageous/NeoVintageous/issues/127
Yes, mapping `:w` will override `:`. Implementing [`:autocmd`](http://vimdoc.sourceforge.net/htmldoc/autocmd.html) might help resolve this. For example in Vim to run a function pre save: ``` :autocmd BufWritePre * call TrimWhiteSpace() ``` So...