Add more keys to vim navigation (#29208)

* Add more keys to vim navigation

* fix/grammar-suggestion

* fix/alignment
This commit is contained in:
trungqudinh
2019-07-09 05:45:40 +07:00
committed by Tom
parent 1990d26c9a
commit 63c4f93fc3

View File

@ -19,6 +19,8 @@ key will move the cursor to the end of the current word.
* To move to the beginning of the current line, type `0`, and to move to the end
of the current line, type `$`.
* To make one navigation `x` number of times, type the `number`, then the `navigating key`.
* Finally, to move to the first line in the file, type `gg`, and to move to the
last line in the file, type `G`.
@ -29,10 +31,13 @@ h moves one character left
j moves one row down
k moves one row up
l moves one character right
4h moves four characters left
6j moves six rows down
w moves to the beginning of the next word
b moves to the beginning of the previous word
e moves to the end of the current word
5w moves to the beginning of the next five words
0 moves to the beginning of the current line
$ moves to the end of the current line