Menu

Vim Command Reference

Master Vim with this comprehensive command reference. Search, filter, and learn all commands with detailed examples.

h
Movement

Move Left

Move cursor one character to the left.

Usage Examples:

h # Move left once
5h # Move left 5 times

Level 2 • Foundation

j
Movement

Move Down

Move cursor one line down.

Usage Examples:

j # Move down once
10j # Move down 10 lines

Level 2 • Foundation

w
Movement

Next Word

Move to the beginning of the next word.

Usage Examples:

w # Next word
3w # Jump 3 words

Level 3 • Foundation

i
Editing

Insert Mode

Enter insert mode at the cursor position.

Usage Examples:

i # Insert at cursor
I # Insert at line start

Level 5 • Editing

dd
Editing

Delete Line

Delete the entire current line.

Usage Examples:

dd # Delete current line
3dd # Delete 3 lines

Level 6 • Editing

/
Search

Search Forward

Search for text pattern forward in the document.

Usage Examples:

/hello # Search for "hello"
/\d+ # Search with regex

Level 14 • Advanced

Ready to Practice?

Now that you know the commands, put them into practice with VimMaster's interactive levels.