vim edit - RawIron/rawiron.github.io GitHub Wiki
Use v to get into visual character mode.
<shift-v> " will highlight the entire line.
<ctrl-v> " will take you into visual block mode so you can highlight columns.
:jumps " list jumps
<ctrl-i> " previous jump
<ctrl-o> " next jump
:changes " list changes
g; " previous change
g, " next change
marks
:marks " list marks
m{a-zA-Z} " mark position
'{a-zA-Z}
`{a-zA-Z} " jump to position
move line under the cursor to the top, bottom, center of window
zt
zb
z.
redo a change
<ctrl-r>
repeat
" last change
.
" last ex command
@:
" last register
@@
choose a register with "
There are several special registers.
clipboard register is +
paste register +
"+p
yank line into register +
"+yy