Vim Beginner Tips

If you’re reading this, you’re probably eager to unlock the power of Vim and rejoice in all the milliseconds saved! And of course impress your friends with your newfound keyboard wizardry. So without further ado, here’s a few tips to get started.

Back to Basics

There’s a million resources on core Vim commands out there so I’ll just quickly cover the absolute essentials here. Don’t forget, Vim commands are case sensitive!

Cursor Navigation 

  • h, j, k, lMove left, down, up, right
  • 0, $Jump to the beginning, end of the line
  • ^Jump to the first non-blank character of the line
  • w, eJump to start, end of the word
  • b: Jump backwards to the start of the word
  • gg: Jump to the first line
  • G: Jump to the last line
  • }, {Jump to the next, previous paragraph

Pro tip – The capitalized versions of the web commands will jump through punctuations.

Common Commands 

  • x: Delete character under cursor
  • sDelete character under cursor and enter into insert mode
  • dd: Delete line
  • ccDelete line and enter into insert mode
  • yyYank (copy) line
  • p: Paste text
  • I, AJump to the start, end of the line and enter into insert mode
  • uUndo
  • ^rRedo
  • .Repeat last command
  • >>Add indentation to the line

Userful Command Sequences

Now for a few of my most frequently used command sequences. Keep in mind nearly all commands can be preceded with a # to dictate a repeat count. For example, 8dd will delete 8 lines and 4> will add 4 indents to the current selection. There are many variations that can do the same thing, so play around with these! You might discover a combination more to your liking.

ggVGSelect the entire file. Follow it up with d to delete it, c to change it, or y to yank it.
yi"Yank the text between the "" quotes. Use ya" if you want to include the quotation marks in the yank. Or da" to delete.
ci"Change the text between the "" quotes.
V}>Add an indent to the paragraph. Execute V}4> to add 4 indents.
viWUUppercase a word. Use viWu to lowercase.
d4jDelete 4 lines.
Scroll to Top