Vim - movement Flashcards
1
Q
move the cursor 1 word
A
w
2
Q
move the cursor back 1 word
A
b
3
Q
move the cursor to the end of a word
A
e
4
Q
move to the previous end of word
A
ge
5
Q
Move to the end of a line
A
$
6
Q
Move to the first non-blank character of a line
A
^
7
Q
Move to the first character on a line
A
0
or <Home>
8
Q
search forward in the line for a single character ‘x’.
A
fx
9
Q
search forward in the line for a single character ‘x’, but stop 1 character before the searched character.
A
tx
10
Q
search forward in the line for a single character ‘x’, but stop 1 character before the searched character.
A
tx
11
Q
repeat a single character search forwards
A
;
12
Q
repeat a single character search backwards
A
,
13
Q
Abort a single character search
A
f<Esc>
14
Q
match parenthesis
A
%
15
Q
move to line 33
A
33G