Learn Vim
Mastering vim can make your working environment more efficient and enjoyable.
Navigate through chapters and try commands in the interactive terminal.
VIM
| Command | Description |
|---|---|
|
Pro Tips
- -
Interactive Vim editor is available on desktop.
Use a computer for the full experience!
vim practice.txt
Click here and try: i insert | Esc normal | h j k l move
Click on the editor above, then press keys to practice Vim commands
Quick Reference
Navigation
h j k lmove cursorw bword forward/back0 $line start/endgg Gfile start/end
Editing
i ainsert/appendx dddelete char/lineyy pcopy/pasteuundo
Search
/textsearch forward?textsearch backwardn Nnext/prev match:%s/a/b/greplace all
Files
:wsave:qquit:wqsave & quit:q!force quit