h | move left one character |
j | move down one character |
k | move up one character |
l | move right one character |
w | move forward one word |
b | move to the start of current word |
e | move to the end of current word |
( | move back one sentence |
) | move forward one sentence |
^ | move to the beginning of current line |
$ | move to the end of current line |
{ | move to start of previous paragraph or code block |
} | move to end of next paragraph or code block |
Ctrl+F | move forward one screenful |
Ctrl+B | move backward one screenful |
<n>G | move to the nth line |
G | move to the last line |
gg | move to the first line |
% | move to the matching bracket |
t<char> | move forward until the next occurrence of the character |
f<char> | move forward over the next occurrence of the character |
T<char> | move forward until the previous occurrence of the character |
F<char> | move forward over the previous occurrence of the character |