Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

Q_lr Left-right motions

h N h left (also: CTRL-H, <BS>, or <Left> key)


l N l right (also: <Space> or <Right> key)
0 0 to first character in the line (also: <Home> key)
^ ^ to first non-blank character in the line
$ N $ to the last character in the line (N-1 lines lower)
(also: <End> key)
g0 g0 to first character in screen line (differs from "0"
when lines wrap)
g^ g^ to first non-blank character in screen line (differs
from "^" when lines wrap)
g$ N g$ to last character in screen line (differs from "$"
when lines wrap)
gm gm to middle of the screen line
bar N | to column N (default: 1)
f N f{char} to the Nth occurrence of {char} to the right
F N F{char} to the Nth occurrence of {char} to the left
t N t{char} till before the Nth occurrence of {char} to the right
T N T{char} till before the Nth occurrence of {char} to the left

You might also like