Overview
Teaching: 40 min Exercises: minQuestions
How to edit text in the command-line terminal
What are the core philosophies behind vim?
Objectives
Invest time in editors to save yourself time!
Writing English words and writing code are very different activities. When programming, you spend more time switching files, reading, navigating, and editing code compared to writing a long stream. It makes sense that there are different types of programs for writing English words versus code (e.g. Microsoft Word versus Visual Studio Code).
For data analysis tasks, we spend most of our time editing code, so it’s worth investing time mastering an editor that fits your needs. Here’s how you learn a new editor:
If you follow the above method, fully committing to using the new program for all text editing purposes, the timeline for learning a sophisticated text editor looks like this. In an hour or two, you’ll learn basic editor functions such as opening and editing files, save/quit, and navigating buffers. Once you’re 20 hours in, you should be as fast as you were with your old editor. After that, the benefits start: you will have enough knowledge and muscle memory that using the new editor saves you time. Modern text editors are fancy and powerful tools, so the learning never stops: you’ll get even faster as you learn more. Which editor to learn?
Programmers have strong opinions about their text editors.
Which editors are popular today? See this Stack Overflow survey (there may be some bias because Stack Overflow users may not be representative of programmers as a whole). Visual Studio Code is the most popular editor. Vim is the most popular command-line-based editor.
Vim has a rich history; it originated from the Vi editor (1976), and it’s still being developed today. Vim has some really neat ideas behind it, and for this reason, lots of tools support a Vim emulation mode (for example, 1.4 million people have installed Vim emulation for VS code). Vim is probably worth learning even if you finally end up switching to some other text editor.
It’s not possible to teach all of Vim’s functionality in 20 minutes, so we’re going to focus on explaining the philosophy of Vim, teaching you the basics, showing you some of the more advanced functionality, and giving you the resources to master the tool.
When programming, you spend most of your time reading/editing, not writing. For this reason, Vim is a modal editor: it has different modes for inserting text vs manipulating text. Vim is programmable (with Vimscript and also other languages like Python), and Vim’s interface itself is a programming language: keystrokes (with mnemonic names) are commands, and these commands are composable. Vim avoids the use of the mouse, because it’s too slow; Vim even avoids using the arrow keys because it requires too much movement.
The end result is an editor that can match the speed at which you think.
Vim’s design is based on the idea that a lot of programmer time is spent reading, navigating, and making small edits, as opposed to writing long streams of text. For this reason, Vim has multiple operating modes.
Keystrokes have different meanings in different operating modes. For example, the letter x
in Insert mode will just insert a literal character ‘x’, but in Normal mode, it will delete the character under the cursor, and in Visual mode, it will delete the selection.
In its default configuration, Vim shows the current mode in the bottom left. The initial/default mode is Normal mode. You’ll generally spend most of your time between Normal mode and Insert mode.
You change modes by pressing <ESC>
(the escape key) to switch from any mode back to Normal mode. From Normal mode, enter Insert mode with i
, Replace mode with R
, Visual mode with v
, Visual Line mode with V
, Visual Block mode with <C-v>
(Ctrl-V
, sometimes also written ^V
), and Command-line mode with :
.
You use the <ESC>
key a lot when using Vim: consider remapping Caps Lock to Escape (macOS instructions).
From Normal mode, press i
to enter Insert mode. Now, Vim behaves like any other text editor, until you press <ESC>
to return to Normal mode. This, along with the basics explained above, are all you need to start editing files using Vim (though not particularly efficiently, if you’re spending all your time editing from Insert mode).
Buffers, tabs, and windows
Vim maintains a set of open files, called “buffers”. A Vim session has a number of tabs, each of which has a number of windows (split panes). Each window shows a single buffer. Unlike other programs you are familiar with, like web browsers, there is not a 1-to-1 correspondence between buffers and windows; windows are merely views. A given buffer may be open in multiple windows, even within the same tab. This can be quite handy, for example, to view two different parts of a file at the same time.
By default, Vim opens with a single tab, which contains a single window.
Command mode can be entered by typing :
in Normal mode. Your cursor will jump to the command line at the bottom of the screen upon pressing :
. This mode has many functionalities, including opening, saving, and closing files, and quitting Vim.
The most important idea in Vim is that Vim’s interface itself is a programming language. Keystrokes (with mnemonic names) are commands, and these commands compose. This enables efficient movement and edits, especially once the commands become muscle memory.
You should spend most of your time in Normal mode, using movement commands to navigate the buffer. Movements in Vim are also called “nouns”, because they refer to chunks of text.
hjkl
(left, down, up, right)w
(next word), b
(beginning of word), e
(end of word)0
(beginning of line), ^
(first non-blank character), $
(end of line)H
(top of screen), M
(middle of screen), L
(bottom of screen)Ctrl-u
(up), Ctrl-d
(down)gg
(beginning of file), G
(end of file):{number}<CR>
or {number}G
(line {number})%
(corresponding item)f{character}
, t{character}
, F{character}
, T{character}
{character}
on the current line,
/ ;
for navigating matches/{regex}
, n
/ N
for navigating matchesVisual modes:
v
V
Ctrl+v
Can use movement keys to make selection.
Everything that you used to do with the mouse, you now do with the keyboard using editing commands that compose with movement commands. Here’s where Vim’s interface starts to look like a programming language. Vim’s editing commands are also called “verbs”, because verbs act on nouns.
o / O
insert line below / aboved{motion}
delete {motion}
dw
is delete word, d$
is delete to end of line, d0
is delete to beginning of linec{motion}
change {motion}
cw
is change word
like d{motion}
followed by i
x
delete character (equal do dl
)s
substitute character (equal to xi
)r
replace characterd
to delete it or c
to change itu
to undo, <C-r>
to redoy
to copy / “yank” (some other commands like d
also copy)p
to paste~
flips the case of a characterYou can combine nouns and verbs with a count, which will perform a given action a number of times.
You can use modifiers to change the meaning of a noun. Some modifiers are i
, which means “inner” or “inside”, and a
, which means “around”.
ci(
change the contents inside the current pair of parenthesesci[
change the contents inside the current pair of square bracketsda'
delete a single-quoted string, including the surrounding single quotesHere is a broken fizzbuzz
python implementation:
def fizz_buzz(limit):
for i in range(limit):
if i % 3 == 0:
print('fizz')
if i % 5 == 0:
print('fizz')
if i % 3 and i % 5:
print(i)
def main():
fizz_buzz(10)
We will fix the following issues:
Vim is customized through a plain-text configuration file in ~/.vimrc
(containing Vimscript commands). There are probably lots of basic settings that you want to turn on.
We are providing a well-documented basic config that you can use as a starting point. We recommend using this because it fixes some of Vim’s quirky default behavior. Download the missing semester config here and save it to ~/.vimrc
.
Vim is heavily customizable, and it’s worth spending time exploring customization options. You can look at people’s dotfiles on GitHub for inspiration. There are lots of good blog posts on this topic too. Try not to copy-and-paste people’s full configuration, but read it, understand it, and take what you need. We will also go over dotfiles in the next class in more detail.
There are tons of plugins for extending Vim. Contrary to outdated advice that you might find on the internet, you do not need to use a plugin manager for Vim (since Vim 8.0). Instead, you can use the built-in package management system. Simply create the directory ~/.vim/pack/vendor/start/
, and put plugins in there (e.g. via git clone
).
Here are some of our favorite plugins:
We’re trying to avoid giving an overwhelmingly long list of plugins here. Check out Vim Awesome for more awesome Vim plugins. There are also tons of blog posts on this topic: just search for “best Vim plugins”.
Many tools support Vim emulation. The quality varies from good to great; depending on the tool, it may not support the fancier Vim features, but most cover the basics pretty well.
If you’re a Bash user, use set -o vi
. If you use Zsh, bindkey -v
. Additionally, no matter what shell you use, you can export EDITOR=vim
. This is the environment variable used to decide which editor is launched when a program wants to start an editor. For example, git will use this editor for commit messages.
Many programs use the GNU Readline library for their command-line interface. Readline supports (basic) Vim emulation too, which can be enabled by adding the following line to the ~/.inputrc
file:
set editing-mode vi
With this setting, for example, the Python REPL will support Vim bindings.
There are even vim keybinding extensions for web browsers - some popular ones are Vimium for Google Chrome and Tridactyl for Firefox. You can even get Vim bindings in Jupyter notebooks.
Resources
vimtutor
is a tutorial that comes installed with Vim - if Vim is installed, you should be able to run vimtutor
from your shellExercise
- Complete
vimtutor
. Note: it looks best in a 80x24 (80 columns by 24 lines) terminal window.- Download the missing semester’s basic vimrc and save it to
~/.vimrc
. Read through the well commented file using Vim, and observe how your Vim looks and behaves slightly different with the new configurations.- Install and configure a plugin: ctrlp.vim.
- Create the plugins directory with
mkdir -p ~/.vim/pack/vendor/start
Download the plugin:cd ~/.vim/pack/vendor/start; git clone https://github.com/ctrlpvim/ctrlp.vim
Read the documentation for the plugin. Try usingCtrlP
to locate a file by navigating to a project directory, opening Vim, and using the Vim command-line to start:CtrlP
. CustomizeCtrlP
by adding configuration to your~/.vimrc
to openCtrlP
by pressingCtrl-P
.- To practice using Vim, re-do the Demo from lecture on your own machine.
- Use Vim for all your text editing for the next month. Whenever something seems inefficient, or when you think “there must be a better way”, try Googling it, there probably is.
- Configure your other tools to use Vim bindings (see instructions above).
Key Points
Vim is a modal editor that tries to match the speed at which you think
Normal mode editing and moving around
Insert mode for inserting text
Visual for selecting lines or blocks of text
Command-line for running vim commands