Vim Commands Cheat Sheet: How To Exit
Vim Commands Cheat Sheet: How To Exit
Vim Commands Cheat Sheet: How To Exit
How to Exit
:q[uit] Quit Vim. This fails when changes have been made.
:q[uit]! Quit without writing.
:cq[uit] Quit always, without writing.
:wq Write the current file and exit.
:wq! Write the current file and exit always.
:wq {file} Write to {file}. Exit if not editing the last
:wq! {file} Write to {file} and exit always.
:[range]wq[!] [file] Same as above, but only write the lines in [range].
ZZ Write current file, if modified, and exit.
ZQ Quit current file and exit (same as ":q!").
Editing a File
Edit the current file. This is useful to re-edit the current file, when it has been changed
:e[dit]
outside of Vim.
Edit the current file always. Discard any changes to the current buffer. This is useful if
:e[dit]!
you want to start all over again.
:e[dit]
Edit {file}.
{file}
:e[dit]!
Edit {file} always. Discard any changes to the current buffer.
{file}
gf Edit the file whose name is under or after the cursor. Mnemonic: "goto file".
Inserting Text
a Append text after the cursor [count] times.
A Append text at the end of the line [count] times.
i Insert text before the cursor [count] times.
I Insert text before the first non-blank in the line [count] times.
gI Insert text in column 1 [count] times.
o Begin a new line below the cursor and insert text, repeat [count] times.
O Begin a new line above the cursor and insert text, repeat [count] times.
Inserting a file
:r[ead] [name] Insert the file [name] below the cursor.
:r[ead] !{cmd} Execute {cmd} and insert its standard output below the cursor.
Deleting Text
<Del> or
Delete [count] characters under and after the cursor
x
X Delete [count] characters before the cursor
d{motion} Delete text that {motion} moves over
dd Delete [count] lines
D Delete the characters under the cursor until the end of the line
{Visual}x or
Delete the highlighted text (for {Visual} see Selecting Text).
{Visual}d
{Visual}CTRL-H or
When in Select mode: Delete the highlighted text
{Visual}
{Visual}X or
Delete the highlighted lines
{Visual}D
:[range]d[elete] Delete [range] lines (default: current line)
:[range]d[elete] {count} Delete {count} lines, starting with [range]
Substituting
:[range]s[ubstitute]/{pattern}/{string}/[c] For each line in [range] replace a match of {pattern} with
[e][g][p][r][i][I] [count] {string}.
Repeat last :substitute with same search pattern and
:[range]s[ubstitute] [c][e][g][r][i][I]
substitute string, but without the same flags. You may add
[count] :[range]&[c][e][g][r][i][I] [count]
extra flags
The arguments that you can use for the substitute commands:
[c] Confirm each substitution. Vim positions the cursor on the matching
string. You can type:
'y' to substitute this match
'n' to skip this match
to skip this match
'a' to substitute this and all remaining matches {not in Vi}
'q' to quit substituting {not in Vi}
CTRL-E to scroll the screen up {not in Vi}
CTRL-Y to scroll the screen down {not in Vi}.
[e] When the search pattern fails, do not issue an error message and, in
particular, continue in maps as if no error occurred.
[g] Replace all occurrences in the line. Without this argument,
replacement occurs only for the first occurrence in each line.
[i] Ignore case for the pattern.
[I] Don't ignore case for the pattern.
[p] Print the line containing the last substitute.
Undo/Redo/Repeat
u Undo [count] changes.
:u[ndo] Undo one change.
CTRL-R Redo [count] changes which were undone.
:red[o] Redo one change which was undone.
U Undo all latest changes on one line. {Vi: while not moved off of it}
. Repeat last change, with count replaced with [count].
Moving Around
Basic motion commands:
k
h l
j
CTRL-N
0 To the first character of the line (exclusive).
<Home> To the first character of the line (exclusive).
^ To the first non-blank character of the line
$ or
To the end of the line and [count - 1] lines downward
<End>
When lines wrap ('wrap on): To the first character of the screen line (exclusive).
g0 or Differs from "0" when a line is wider than the screen. When lines don't wrap ('wrap'
g<Home> off): To the leftmost character of the current line that is on the screen. Differs from "0"
when the first character of the line is not on the screen.
When lines wrap ('wrap' on): To the first non-blank character of the screen line
(exclusive). Differs from "^" when a line is wider than the screen. When lines don't
g^ wrap ('wrap' off): To the leftmost non-blank character of the current line that is on the
screen. Differs from "^" when the first non-blank character of the line is not on the
screen.
When lines wrap ('wrap' on): To the last character of the screen line and [count - 1]
screen lines downward (inclusive). Differs from "$" when a line is wider than the
g$ or
screen. When lines don't wrap ('wrap' off): To the rightmost character of the current
g<End&gr;
line that is visible on the screen. Differs from "$" when the last character of the line is
not on the screen or when a count is used.
To [count]'th occurrence of {char} to the right. The cursor is placed on {char}
f{char}
(inclusive).
To the [count]'th occurrence of {char} to the left. The cursor is placed on {char}
F{char}
(inclusive).
Till before [count]'th occurrence of {char} to the right. The cursor is placed on the
t{char}
character left of {char} (inclusive).
Till after [count]'th occurrence of {char} to the left. The cursor is placed on the
T{char}
character right of {char} (inclusive).
; Repeat latest f, t, F or T [count] times.
, Repeat latest f, t, F or T in opposite direction [count] times.
- <minus> [count] lines upward, on the first non-blank character (linewise).
+ or
CTRL-M or [count] lines downward, on the first non-blank character (linewise).
<CR>
_
[count] - 1 lines downward, on the first non-blank character (linewise).
<underscore>
<C-End> or
Goto line [count], default last line, on the first non-blank character.
G
<C-Home> or
Goto line [count], default first line, on the first non-blank character.
gg
<S-Right> or
[count] words forward
w
<C-Right> or
[count] WORDS forward
W
e Forward to the end of word [count]
E Forward to the end of WORD [count]
<S-Left> or
[count] words backward
b
<C-Left> or
[count] WORDS backward
B
ge Backward to the end of word [count]
gE Backward to the end of WORD [count]
These commands move over words or WORDS.
A word consists of a sequence of letters, digits and underscores, or a sequence of other non-blank
characters, separated with white space (spaces, tabs,
A WORD consists of a sequence of non-blank characters, separated with white space. An empty line is
also considered to be a word and a WORD.
Marks
Set mark {a-zA-Z} at cursor position (does not move the cursor, this is not a motion
m{a-zA-Z}
command).
m' or Set the previous context mark. This can be jumped to with the "''" or "``" command
m` (does not move the cursor, this is not a motion command).
:[range]ma[rk]
Set mark {a-zA-Z} at last line number in [range], column 0. Default is cursor line.
{a-zA-Z}
:[range]k{a-zA-
Same as :mark, but the space before the mark name can be omitted.
Z}
'{a-z} To the first non-blank character on the line with mark {a-z} (linewise).
'{A-Z0-9} To the first non-blank character on the line with mark {A-Z0-9} in the correct file
`{a-z} To the mark {a-z}
`{A-Z0-9} To the mark {A-Z0-9} in the correct file
:marks List all the current marks (not a motion command).
:marks {arg} List the marks that are mentioned in {arg} (not a motion command). For example:
Searching
/{pattern}[/] Search forward for the [count]'th occurrence of {pattern}
Search forward for the [count]'th occurrence of {pattern} and go {offset} lines
/{pattern}/{offset}
up or down.
/<CR> Search forward for the [count]'th latest used pattern
Search forward for the [count]'th latest used pattern with new. If {offset} is
//{offset}<CR>
empty no offset is used.
?{pattern}[?]<CR> Search backward for the [count]'th previous occurrence of {pattern}
?{pattern}? Search backward for the [count]'th previous occurrence of {pattern} and go
{offset}<CR> {offset} lines up or down
?<CR> Search backward for the [count]'th latest used pattern
Search backward for the [count]'th latest used pattern with new {offset}. If
??{offset}<CR>
{offset} is empty no offset is used.
n Repeat the latest "/" or "?" [count] times.
N Repeat the latest "/" or "?" [count] times in opposite direction.
Selecting Text (Visual Mode)
To select text, enter visual mode with one of the commands below, and use motion commands to
highlight the text you are interested in. Then, use some command on the text.
The operators that can be used are:
~ switch case
d delete
c change
y yank
> shift right
< shift left
! filter through external command
= filter through 'equalprg' option command
gq format lines to 'textwidth' length
How to Suspend
Suspend Vim, like ":stop". Works in Normal and in Visual mode. In Insert and Command-
CTRL-Z
line mode, the CTRL-Z is inserted as a normal character.
:sus[pend] Suspend Vim. If the '!' is not given and 'autowrite' is set, every buffer with changes and a
[!] or file name is written out. If the '!' is given or 'autowrite' is not set, changed buffers are not
:st[op][!] written, don't forget to bring Vim back to the foreground later!