Vim Editor Cheat Sheet

Posted on  by 



A useful collection of Vim cheat sheets to help you learn Vim editor faster. You can use them and download them for free.

Vim is an excellent terminal based text editor. The one problem with Vim is that it doesn’t function the same way as the regular graphical editors. You must know basic Vim commands in order to start using it. If you want to use it more effectively, you need to master the keyboard shortcuts.

Basic vi commands (cheat sheet) By admin. Vi is one of the most commonly used editor program.

One-page guide to Vim: usage, examples, and more. Vim is a very efficient text editor. This reference was made for Vim 8.0. For shortcut notation, see:help key-notation. Devhints.io Edit; Vim cheatsheet. Vim is a very efficient text editor. This reference was made for Vim 8.0. R – replace a single character J – join line below to the current line cc – change (replace) entire line cw – change (replace) to the end of the word c$ – change (replace) to the end of the line s – delete character and substitute text S – delete line and substitute text (same as cc) xp – transpose two letters (delete and paste) u – undo Ctrl + r – redo. – repeat last command. Vim cheat sheet Allison McKnight (aemcknig@andrew.cmu.edu) Navigation h Move left H Top line on screen j Move down M Middle line on screen k Move up L Bottom line on screen l Move right 10j Move down 10 lines gg First line of the le e The end of the current word.

If you want to master Vim and its shortcuts, you need to use it extensively. A cheat sheet comes handy in such a case. You can print it and keep it on your desk and when you seem at loss, just look at it for a quick reference.

Editor

Now the question is: Where can you find such Vim shortcut cheat sheet? Fret not, I have collected some of them here that you can download and use it.

Best Vim cheat sheet you can download for free

For your convenience, I have categorized them. So you get Vim command in PDF format, online Vim cheat sheet, cheat sheet for beginners and advanced users etc.

Before you see all that, let me share a simple Vim cheat sheet I created that displays only the absolute essential Vim commands. You can download it for free from the link below.

Essential Vim Commands Cheat Sheet

A simple Vim cheat sheet I created that displays only the absolute essential Vim commands.

Download Vim cheat sheets in PDF format

Here are some cheat sheets that you can download in PDF format. You can use them on your computer or print them and pin them on your desk.

Vim Cheat Sheet for Beginners

All the essential Vim commands can be found in this two-page cheat sheet.

Download here.

Vim Cheat Sheet for Programmers

Aimed at coders, it provides a number of shortcuts at a glance.

Download here.

Vim Graphical Cheat Sheet (for advanced users)

A comprehensive, multiple pages cheat sheet for advanced users.

Download here.

Online Vim cheat sheets

Here are some websites that list helpful Vim commands. You can bookmark them for quick access. This also saves environment as you don’t need to print them.

Vim Cheat Sheet Wallpaper

You can get this Vim wallpaper in various colors and formats from its GitHub repository.

The key is to rely on one or two cheat sheets at max. Referring to too many Vim cheat sheets may become counterproductive.

Want to learn Vim seriously? Try this

If you are serious about learning Vim, you may purchase this ebook and video combination from Jovica Ilic, an expert Vim user.

Which is your favorite Vim cheat sheet? Did I list it here? Do share your views in the comment section.

Become a Member for FREE
Become a member to get the regular Linux newsletter (2-4 times a month) and access member-only contents.

Join the conversation.

Vim Cheat Sheet Outline

For Those Just Getting Started

Beginner

The goal with these seven sections is to give the beginner confidence to replace existing tools with the Vim editor.

  1. Vim Modes - Navigating modes
  2. Vim Command Structure - Counts, Operators and Motions
  3. Vim Editing - Undo, replace, delete and append
  4. Vim Cut, Copy and Paste - Edit in Visual and Normal Modes
  5. Vim Search and Replace - Edit in Normal and Command Modes
  6. Vim Command Mode - Save, quit, write, read
  7. Vim Registers - Reuse saved blocks of text
  8. Vim Tabs - Manage multiple files in tabs

Accepting that Vim has over 1,000 commands, we only had space to cover about 80 essential commands, but these should provide a good base of knowledge to launch a further exploration of Vim commands.

Vim and Vi Version Confusion

On most modern Linux distributions for command-line operation, Vim is the replacement for the Vi editor, despite being launched with the command vi. If this is the case for you, your system is most-likely running a limited version of Vim, called vim-tiny. You can find your version using :ve inside Vim. If it says 'Small version without GUI' then you have a limited, but small program. Many of the commands covered in this Vim cheat sheet will not work for you as vim-tiny emulates vi commands and vi shortcuts, so keep that in mind.

If that is the case for you, and you can upgrade to the full version of Vim, called vim-runtime, look for a tutorial on this later.

Vim Modes

Keystrokes have alternative meanings in each mode. So a vital first step is knowing your current mode and how to navigate between them.

  • Normal Mode - navigating and some editing
  • Insert Mode - editing and appending text
  • Visual Mode - selecting and moving text
  • Command Mode (Ex Mode) - entering Vim commands

The default or home mode is Normal Mode and Esc returns you here.

Navigating Vim Modes

Keystrokes used to navigate between Vim modes.

Current ModeDesired ModeCharacter(s)
Normal ModeInsert ModeA, a, C, I, i, O, o, S, s
Normal ModeCommand Mode (Ex Mode):
Normal ModeVisual Modev
Any ModeNormal ModeEsc (sometimes twice)

So if you make unintended keystrokes, return to Normal Mode using Esc. There are other ways to navigate between modes of course, and here we cover the basics for beginners.

Vim Command Structure

Counts, Operators and Motions

A combined command is one that can be applied multiple times, taking a variety of actions in all directions.

  • Counts - The number of times to repeat an Operator or Motion, often abbreviated as N
  • Operators - Actions or Vim commands to perform
  • Motions - A navigational direction to move the cursor

Below is a short example of three combined commands translated into Counts, Operators and Motions.

Combined commandCountOperatorMotionWhat does it do?
5dw5dwDelete 5 words
3j3jMove down 3 lines
3g~l3g~lSwap case for next 3 characters
Counts

Vim Editor Commands Cheat Sheet Pdf

All Counts 1, 2, 3, 4, 5, 6, 7, 8, 9 require an Operator and/or Motion afterwards. Use Esc to erase an unwanted Count. Counts are optional, and without a Count you can think of the default being 1.

0 is not a Count, but instead moves the cursor to the first column of a line.

Operators

Of the 15 Operators in total, below are those commonly used by beginners. Operators are optional.

CharacterOperation
cChange
dDelete
g~Swap case
guMake lowercase
gUMake uppercase
yYank (copy)
<Shift left
>Shift right
Motions

Vim Motions can optionally be preceded by a Count and/or an Operator. Vim will move or take action from the cursor a specified number of times and remain in Normal Mode. Also note, there are many ways (over 90) to initiate a Motion but to save time and to avoid feeling overwhelmed, start with those in the first column.

CharacterSynonym(s)MotionUnits
hBackspace, Ctrl-hLeftCharacters
lSpaceRightCharacters
jEnter, Ctrl-j, Ctrl-m, Ctrl-nDownLines
kCtrl-pUpLines
bBackwardWords
wForwardWords
{BackwardParagraphs
}ForwardParagraphs
Ctrl-dDown1/2 Screens
Ctrl-uUp1/2 Screens
Ctrl-bBackwardScreens
Ctrl-fForwardScreens

The Ctrl-s keystroke is used for Linux Terminal control and may lock your Vim console. If this happens, hit Ctrl-q to regain control.

Other Motions

The following are important and commonly-used Motions.

CharacterPrefix with Count?Motion
0 (zero)NoMove cursor to beginning of current line
$YesMove cursor to end of current line
^NoMove cursor to first non-blank character of current line
g_YesMove cursor to last non-blank character of current line
ggNoGo to start of file
GNoGo to end of file
HNoGo to top of screen
LNoGo to bottom of screen
MNoGo to middle of screen
zzNoCenter the screen around the cursor

A Count plus the vertical bar or pipe will go to that column of the current line. So 80| will go to column 80.

Vim Editing

Vim Command Reference

Two Modes for Editing: Normal Mode and Insert Mode

Here we cover editing files from two modes. Light edits are performed while remaining in the default Normal Mode, while others such as appending text take a Motion followed by a change to Insert Mode.

Vim Editor Cheat Sheet

Normal Mode Vim Editing
CharacterPrefix with Count?Meaning
uYesUndo the last edit
Crtl-rYesRedo last undo changes
rYesReplace one or several characters
xYesDelete character under cursor and forward
.YesRepeat the last change at the cursor

The r command is recommended for beginers over R which kicks you into a whole different mode called Replace Mode. It is often easier to use Insert Mode to edit larger blocks of text, rather than learn a new mode.

Insert Mode Vim Editing
CharacterPrefix with Count?Meaning
aYesAppend text after cursor position
AYesAppend text at end of line
CYesCut text from cursor to end of line
IYesInsert text at the first non-blank character of the line
iYesInsert text before the cursor
OYesOpen line(s) above cursor
oYesOpen line(s) below cursur
SYesSwap or delete line(s) for newly created line
sYesSwap or delete character(s) for newly type characters

Vim Cut, Copy and Paste

Two Modes: Visual Mode and Normal Mode

Here are two ways to select blocks of text to accomplish standard cut, copy and paste operations. First, and easiest for those coming from other visual editors, is in Visual Mode. Second is remaining in Normal Mode.

Visual Mode

The following keystrokes perform the most basic copy and paste, switching from Normal Mode to Visual Mode.

CharacterSynonymMeaning
vSwitch to Visual Mode for character selection
yYank (copy) text selected with Motions
pPut (paste) selected text block after the cursor
xdDelete a block of selected text
Ctrl-v, (select rows), Shift+i, (add text), EscThis enters Visual Block mode and is helpful for adding text or comment characters in front of multiple lines.

Once you enter Visual Mode text is highlighted as you select blocks of text with standard Motions. After you are happy with the block, type your cut or copy command from the table above. You will then automatically return to Normal Mode to paste the text.

Many find Visual Mode easier to grasp at first but advancing to Normal Mode for cut, copy and paste operations can save keystrokes.

The Visual Block Mode example above can be a timesaver if for example you wanted to comment out 20 lines of code in Python with the hash # character. Start at the first line where you want to enter a comment and hit Ctrl+v, then navigate down the 19 lines, hit Shift+i and input the text you would like, here a # and space, then Esc.

Normal Mode

To perform cut, copy and paste operations from within Normal Mode requires a good understanding of Motions.

CharacterPrefix with Count?Meaning
y$YesYank (copy) to end of line
yyYesYank (copy) the whole current line
ywYesYank (copy) current word
YYesYank (copy) the whole current line
PYesPut (paste) before the cursor
pYesPut (paste) after the cursor

Vim Search and Replace

Vim editor commands cheat sheet pdf

Search Lines, Files and Replace Text

Vim offers many commands to search for and replace text at the line-level and file-level.

We will stick with the basics here, but at a more advanced level, with regular expressions, the Vim editor offers the ability initiate any search imaginable, even across whole filesystems.

Search Lines

Searching for characters within lines can be helpful for jumping to specific coding symbols and letters.

CharacterPrefix with Count?Meaning
f{character}YesSearch current line right for N occurance of {character}
F{character}YesSearch current line left for N occurance of {character}
Search Files

File-level search is one of the most common functions for Vim users, and most users memorize one of the two pattern recognition commands because when combined with the n and N symbols noted above, they both can direct Vim to search up and down a file just as easily, so using / or ? is your preference.

CharacterPrefix with Count?Meaning
/{pattern}ReturnYesSearch for next N occurance of {pattern}
?{pattern}ReturnYesSearch for previous N occurance of {pattern}
nYesSearch for next N occurance of an already initiated search in the same direction
NYesSearch for next N occurance of an already initiated search in the opposite direction
:noh<Enter>NoTo turn off highlighting of searched-for text.
Search and Replace

Here we start to see entries in Command Mode using the : character. The term Command Mode, often confuses beginners because you can enter Vim commands from any mode. Official Vim documentation refers to commands entered with : as Ex Commands, but most people use the term Command Mode.

Character(s)Meaning
:%s/{search}/{replace}/gcSearch over the range (% for whole file) for all occurances of {search} and replace with {replace}.
:10,20s/{search}/{replace}/gcSearch over the range (lines 10 to 20) for all occurances of {search} and replace with {replace}.

The only spaces allowed in the string above sit between the / characters, and the { and } characters are not typed. The g means globally over the whole file and c instructs Vim to provide a confirmation before each replacement is made.

A confirmation dialog will prompt you for one of seven choices.

  1. y - substitute at current stop
  2. n - skip this substitution
  3. a - accept all future substitutions
  4. q - quit the search and replace
  5. l - substitute at current stop then quit
  6. ^E (Ctrl-e) - scroll up to previous stop
  7. ^Y (Ctrl-y) - scroll down to next stop

If you leave the c off the end of the command, Vim will perform all replacements in the whole file almost instantly, so it is best for beginners to start with confirming changes.

A Search and Replace Example

The following command uses Regular Expressions to remove the last one or several blank spaces at the end of each line in a file :%s/s+$//.

Vim Command Mode

Save, Quit, Write and Read

Linux Vim Editor Cheat Sheet

Many essential commands sit in Command Mode, sometimes called Ex Command Mode. All of the following commands are input from Normal Mode, so from any other mode, hit Esc once (sometimes twice) to return to Normal Mode. When entering Command Mode, once the colon character : is pressed, your additional keystrokes appear at the bottom left of the screen.

There are as many as 515 commands in Command Mode and many can be abbreviated. Also, unlike with other modes, commands here, because they are open-ended, require Enter to complete.

Character(s)Synonym(s)Meaning
:w:writeWrite (save) current and previously-named file.
:w {file}:write {file}Write (save) current file and name it {file}.
:wq:x, ZZWrite (save) current and previously-named file and quit Vim.
:q:quitQuit Vim from an unedited file.
:q!ZQQuit Vim from an edited or unedited file without saving changes.
:e {file}:edit {file}Edit a file named {file}.
:r {file}:read {file}Read an external file named {file} at the current cursor position.
:sh:shellTo leave Vim temporarily and go to the shell. Type exit to return.
:!{cmd}To run a shell command {cmd}. Hit q to return to Vim.
:h:helpOpen help in a new window. Use :q to quit help.

Vim Registers

Vim Registers allow you to save blocks of code to paste anywhere you like. Functionality is much like cut, copy and paste operations elsewhere but Registers allow you to save many blocks, using letters a-z and A-Z, so you have 52 slots. The last 10 yanks and deletes are automatically saved under the 0-9 slots in the Register. These can be viewed with :reg.

Creating, pasting and deleting Registers

Registers work logically with actions in Normal Mode and Visual Mode. The ' symbol starts the Register functionality. Examples below use the empty Register name c.

Character(s)Synonym(s)Meaning
'cyyTo save a Register from Normal Mode under the name c of a whole line.
'cyTo save a Register from Visual Mode under the name c of a selected section.
'cpTo put (paste) text from the saved Register named c while in Normal Mode.
:call setreg('c', [])To delete an item from the Register replace it with empty text.
:reg:registersView the currently saved Registers. Type q to quit.
:h reg:help registersFind help on Registers. Type :q to quit.

Besides assigning Registers to letters and numbers, an additional 8 types exist for more advanced uses. These are described in help.

Vim Tabs

You can manage multiple text files in tabs within one Vim window. To navigate between tabs click tab titles with the mouse or use the keystrokes described below. The 'X' at the top right when clicked will close that tab.

Character(s)Synonym(s)Meaning
:tabe:tabedit
:tabnew
To open a new blank tab.
:tabe {file}:tabedit {file}
:tabenew {file}
To open a new tab to edit {file}.
:tabc:tabclose
:tabclose!
To close the current tab.
{count} gtTo specify which tab with {count} or go to the next tab. This wraps around forward.
{count} gTTo specify which tab with {count} or go to the previous tab. This wraps around backward.
:tabsList the current Vim tabs.

Additional Vim tab functionality includes reordering tabs, looping over tabs and closing all tabs. See :help tabs for more.

Related Content

  • A similarly organized Linux Cheat Sheet
  • Practice hjkl navigation with the Vimazing Race Maze Game
  • Common Vim commands with videos in the Vim Reference




Coments are closed