###Text editing
Repeat more actions with the .
command.
Commands & text objects for surrounding selections with parentheses, braces, quotes, XML tags,
Exchange the contents of selections/text objects.
Lean & mean status/tabline for vim that's light as air.
Improves the f
/t
commands in a very intuitive way and also frees up the ,
and ;
keys.
Multiple Cursors for VIM. For the occasions when VIM's gn
motion isn't powerful enough or you need more visual feedback.
Very nice plugin! Substantially faster, less buggy, better visual feedback and a lot more features than the old Multiple Cursors plugin. Actually the first incarnation of multiple cursors in VIM that I really like.
As an alternative to multiple cursor editing you can put a mapping like nnoremap <silent> M *``cgn
in your vimrc to quickly replace the word under the cursor by pressing M
. This can be repeated with .
, so one can jump to and replace the next occurrence or use n
to skip to the next occurrence without replacing.
Live highlight of patterns and range commands (substitute
, global
, …). Super useful when crafting complex regex searches and/or replacements. Should be built-in functionality.