Replace all pattern (global)
:%s/<oldPattern>/<newPattern>/g
Run terminal command from within vim
Start shell from within vim
Edit another file in new tab
Copy from one vim editor to another
"+y or "+yy for only current line
"+p for pasting
Remove all lines containing pattern
Remove from current line 10 lines to the bottom
Switch line (when the line is long)
Go to next autocompletion
Go to previous autocompletion
Reverse content back from hex
Record command and typing for a (or other char)
esc
q
a
type whatever you want and finish recording with
q
Repeat recorded buffer from a (or @)
Repeat last used recorded buffer
Repeat recorded buffer XX times
Jump to next placeholder using ulti snips
Delete chars until specific char
Split horizontal, vertical
Edit file as sudo after opening
Remove word around cursor
Delete all chars inside delimiter (example ")
Write output of command directly to vim
Increment next integer by 1
Set viewport of current line to middle
Log all keystrokes written inside vim (insert into vimrc)
:autocmd BufWritePost * :silent :w! >> <file>
Remove trailing characters of strings
%s/<trailingString>\+$//e
Capitalize the first letter of each line
set spell
set spelllang=en
Add word to spell dictionary
Remove word from spell dictionary
Replace last / of each line with -