Privacy Policy
© 2025 linux101.dev

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.

CommandDescription
hMove cursor left.
jMove cursor down.
kMove cursor up.
lMove cursor right.
wMove forward one word.
bMove backward one word.
0Move to the beginning of the line.
$Move to the end of the line.
ggMove to the beginning of the file.
GMove to the end of the file.