Vim: Navigating in Normal Mode
Vim's Normal Mode is primarily for navigating and manipulating text. These are the basic commands for moving your cursor efficiently.
| Command | Description |
|---|---|
h | Move cursor left. |
j | Move cursor down. |
k | Move cursor up. |
l | Move cursor right. |
w | Move forward one word. |
b | Move backward one word. |
0 | Move to the beginning of the line. |
$ | Move to the end of the line. |
gg | Move to the beginning of the file. |
G | Move to the end of the file. |