Vim Flashcards
(183 cards)
Vim: how to move cursor 1 char left?
h
Vim: how to move cursor 1 char right?
l
Vim: how to move cursor 1 char up?
k
Vim: how to move cursor 1 char down?
j
Vim: how to move cursor to the beginning of the line?
0
Vim: how to move cursor to the end of the line?
$
Vim: how to move cursor to the first non-empty character of the line?
Vim: how to move cursor forward one word (next alphanumeric word)?
w
Vim: how to move cursor forward one word delimited by a whitespace?
W
Vim: how to move cursor forward five words delimited by whitespace?
5W
Vim: how to move cursor backwards one word (previous alphanumeric word)?
b
Vim: how to move cursor backward one word (delimited by whitespace)?
B
Vim: how to move cursor to end of file?
G
Vim: how to move cursor to beginning of file?
gg
Vim: how to move cursor to the previous sentence?
(
Vim: how to move cursor to the next sentence?
)
Vim: how to move cursor to the previous paragraph?
{
Vim: how to move cursor to the next paragraph?
}
Vim: how to move cursor to the previous section?
[[
Vim: how to move cursor to the next section?
]]
Vim: how to move cursor to the end of the previous section?
[]
Vim: how to move cursor to the end of the next section?
][
Vim: how insert text after the cursor?
a
Vim: how to insert text at the end of line?
A