vi - How to effectively work with multiple files in Vim? - Stack Overflow
All the right moves - Vim Tips Wiki - Wikia
editor - How do I move to end of line in vim - Stack Overflow (and more about movement, especially as it related to moving to the end of “things” like buffers, soft line, hard line, etc.)
How to repeat last n change in Vim? - Stack Overflow (and tips for recording and playback)
vim - Traversing text in Insert mode - Stack Overflow
[vi/vim delete commands and examples | vi vim delete lines to end | alvinalexander.com](http://alvinalexander.com/linux/vi-vim-delete-line-commands-to-end) |
To clear the last search: :let @/= ""
. The clears the search string register.
To turn off highlighting until the next search operation (including pressing n
): :noh
.
To set a new command to perform a long-winded operation (e.g. to let the :C
command perform the same work as :let @/ = ""
: :command C let @/=""
.
Ref: highlight - Vim clear last search highlighting - Stack Overflow
Use vim to view files, then reload manually or reload automically on changes.
Multi-line regex support in Vim - Stack Overflow
How to replace a character by a newline in Vim? - Stack Overflow
mov