From 63c4f93fc3ca7d8ea47f9befed94a85e1071cf1a Mon Sep 17 00:00:00 2001 From: trungqudinh <44312665+trungqudinh@users.noreply.github.com> Date: Tue, 9 Jul 2019 05:45:40 +0700 Subject: [PATCH] Add more keys to vim navigation (#29208) * Add more keys to vim navigation * fix/grammar-suggestion * fix/alignment --- guide/english/vim/navigation/index.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/guide/english/vim/navigation/index.md b/guide/english/vim/navigation/index.md index ac25ccff55..6f4d078d70 100644 --- a/guide/english/vim/navigation/index.md +++ b/guide/english/vim/navigation/index.md @@ -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