https://github.com/VSCodeVim/Vim
# Yank any lines containing "a999-" in them.
:g/a999-/yank A
# Delete all lines
:1,$d
# Delete lines 3-7
:3,7d
# Change (c = action)
cw = change word
ci" = change inside "
ci} = change inside {}
# Select an entire function definition to move (from function line)
Vj%
# Change Occurrences of a variable/word
/search
cgn
n
.
# Move Cursor within screen
H # Go to top of screen (High)
M # Go to middle of screen
L # Go to bottom of screen (Low)
ctrl-e # go down two lines but leave cursor on existing line
ctrl-d # move screen and cursor down half a screen
ctrl-f # full screen down
ctrl-b # back full screen
gb a new shortcut we added which is equivalent to cmd-d
<leader><leader> s <char> Search Character