Skip to content

Vim shortcuts

by ssanjua

September 21, 2024 | 04:55 PM
Share this post:

Global

CommandDescription
:h[elp] keywordOpen help for keyword
:sav[eas] fileSave file as
:clo[se]Close current pane
:ter[minal]Open a terminal window
KOpen man page for word under the cursor

Tip: Run vimtutor in a terminal to learn the first Vim commands.

Cursor movement

CommandDescription
hMove cursor left
jMove cursor down
kMove cursor up
lMove cursor right
gjMove cursor down (multi-line text)
gkMove cursor up (multi-line text)
HMove to top of screen
MMove to middle of screen
LMove to bottom of screen
wJump forwards to the start of a word
WJump forwards to the start of a word (words can contain punctuation)
eJump forwards to the end of a word
EJump forwards to the end of a word (words can contain punctuation)
bJump backwards to the start of a word
BJump backwards to the start of a word (words can contain punctuation)
geJump backwards to the end of a word
gEJump backwards to the end of a word (words can contain punctuation)
%Move cursor to matching character ((), {}, [])
0Jump to the start of the line
^Jump to the first non-blank character of the line
$Jump to the end of the line
g_Jump to the last non-blank character of the line
ggGo to the first line of the document
GGo to the last line of the document
5gg or 5GGo to line 5
gdMove to local declaration
gDMove to global declaration
fxJump to next occurrence of character x
txJump to before next occurrence of character x
FxJump to the previous occurrence of character x
TxJump to after previous occurrence of character x
;Repeat previous f, t, F or T movement
,Repeat previous f, t, F or T movement, backwards
}Jump to next paragraph (or function/block when editing code)
{Jump to previous paragraph (or function/block when editing code)
zzCenter cursor on screen
ztPosition cursor on top of the screen
zbPosition cursor on bottom of the screen
Ctrl + eMove screen down one line (without moving cursor)
Ctrl + yMove screen up one line (without moving cursor)
Ctrl + bMove screen up one page (cursor to last line)
Ctrl + fMove screen down one page (cursor to first line)
Ctrl + dMove cursor and screen down 1/2 page
Ctrl + uMove cursor and screen up