Search Results

4
votes

How to emulate Emacs’ transpose-words in Vim?

These are from my .vimrc and work well for me. " swap two words :vnoremap <C-X> <Esc>`.``gvP``P " Swap word with next word nmap <silent> gw "_yiw:s/\(\%#\w\+\)\ …
0
votes

Editing a text buffer…

check out vim, it's open-source. poke around in it to see how it handles what you want. …