Vim cheatsheet

Vim is a very efficient text editor. This reference was made for Vim 8.0. For shortcut notation, see :help key-notation.

Getting started

Exiting

ShortcutDescription
:qaClose all files
:qa!Close all files, abandon changes
:wSave
:wq/:xSave and close file
:qClose file
:q!Close file, abandon changes
ZZSave and quit
ZQQuit without checking changes

Navigating

ShortcutDescription
hjklArrow keys
<C-U>/<C-D>Page up/page down

Words

ShortcutDescription
b/wPrevious/next word
e/gePrevious/next end of word

Line

ShortcutDescription
0(zero)Start of line
^(after whitespace)
$End of line

Character

ShortcutDescription
fcc
Fcc

Document

ShortcutDescription
ggFirst line
GLast line
:nn
nGn

Window

ShortcutDescription
zzCenter this line
HMove to top of screen
MMove to middle of screen
LMove to bottom of screen

Tab pages

ShortcutDescription
:tabedit [file]Edit file in a new tab
:tabfind [file]Open file if exists in new tab
:tabcloseClose current tab
:tabsList all tabs
:tabfirstGo to first tab
:tablastGo to last tab
:tabnGo to next tab
:tabpGo to previous tab

Editing

ShortcutDescription
aAppend
iInsert
oNext line
OPrevious line
sDelete char and insert
SDelete line and insert
CDelete until end of line and insert
rReplace one character
REnter Replace mode
uUndo changes
<C-R>Redo changes

Exiting insert mode

ShortcutDescription
Esc/<C-[>Exit insert mode
<C-C>Exit insert mode, and abort current command

Exiting insert mode

ShortcutDescription
Esc/<C-[>Exit insert mode
<C-C>Exit insert mode, and abort current command

Clipboard

ShortcutDescription
xDelete character
dd(Cut)
yy(Copy)
pPaste
PPaste before

Visual mode

ShortcutDescription
vEnter visual mode
VEnter visual line mode
<C-V>Enter visual block mode

In visual mode

ShortcutDescription
d/xDelete selection
sReplace selection
y(Copy)

See Operators for other things you can do.

Operators

Usage

Operators let you operate in a range of text (defined by motion). These are preformed in normal mode.

ShortcutDescription
dw
OperatorMotion

Operators list

ShortcutDescription
dDelete
y(copy)
c(delete then insert)
>Indent right
<Indent left
g~Swap case
gUUppercase
guLowercase
!Filter through external program

See :help operator

Examples

Combine operators with motions to use them.

ShortcutDescription
dd(repeat the letter)
dwDelete to next word
dbDelete to beginning of word
2ddDelete 2 lines
dip(inside paragraph)
(in visual mode)dDelete selection

See: :help motion.txt

Text objects

Usage

Text objects let you operate (with an operator) in or around text blocks (objects).

OperatorInsideObject
vip
Operator[i]nside or [a]roundText object

Text objects

ShortcutDescription
pParagraph
wWord
sSentence
[({<A [], (), or {} block
'"`A quoted string
bA block [(
BA block in [{
tA XML tag block

Examples

ShortcutDescription
vipSelect paragraph
vipipipipSelect more
yipYank inner paragraph
yapYank paragraph (including newline)
dipDelete inner paragraph
cipChange inner paragraph

See Operators for other things you can do.

Diff

ShortcutDescription
gvimdiff file1 file2 [file3]See differencies between files, in HMI

Misc

Folds

ShortcutDescription
zo/zOOpen
zc/zCClose
za/zAToggle
zvOpen folds for this line
zMClose all
zROpen all
zm(foldlevel += 1)
zr(foldlevel -= 1)
zxUpdate folds

Uppercase ones are recursive (eg, zO is open recursively).

Navigation

ShortcutDescription
[([{[<({<
])Next
[mPrevious method start
[MPrevious method end

Jumping

ShortcutDescription
<C-O>Go back to previous location
<C-I>Go forward
gfGo to file in cursor

Counters

ShortcutDescription
<C-A>Increment number
<C-X>Decrement

Windows

ShortcutDescription
z{height}<Cr>{height}

Tags

ShortcutDescription
:tag ClassnameJump to first definition of Classname
<C-]>Jump to definition
g]See all definitions
<C-T>Go back to last tag
<C-O> <C-I>Back/forward
:tselect ClassnameFind definitions of Classname
:tjump ClassnameFind definitions of Classname (auto-select 1st)

Case

ShortcutDescription
~Toggle case (Case => cASE)
gUUppercase
guLowercase
gUUgUgU
guugugu

Do these in visual or normal mode.

Marks

ShortcutDescription
`^Last position of cursor in insert mode
`.Last change
``
maa
`aa
'aa

Misc

ShortcutDescription
.Repeat last command
]ppaste under the current indentation level

Command line

ShortcutDescription
<C-R><C-W>Insert current word into the command line
<C-R>"Paste from " register
<C-X><C-F>Auto-completion of path in insert mode

Text alignment

:center [width]
:right [width]
:left

See :help formatting

Calculator

ShortcutDescription
<C-R>=128/2Shows the result of the division: '64'

Do this in insert mode.

Exiting with an error

:cq
:cquit

Works like :qa, but throws an error. Great for aborting Git commands.

Spell checking

ShortcutDescription
:set spell spelllang=en_usTurn on US English spell checking
]sMove to next misspelled word after the cursor
[sMove to previous misspelled word before the cursor
z=Suggest spellings for the word under/after the cursor
zgAdd word to spell list
zwMark word as bad/mispelling
zuC-X (Insert Mode)Suggest words for bad word under cursor from spellfile

See :help spell

Also see

talk-bubbles-line Comments for this cheatsheet. Write yours!