VI Text Editor¶
In this chapter you will learn how to work with the VIsual editor.
Objectives: In this chapter, future Linux administrators will learn how to:
Use the main commands of the VI editor;
Modify a text with the VI editor.
user commands, linux
Knowledge:
Complexity:
Reading time: 20 minutes
Visual (VI) is a popular text editor under Linux despite its limited ergonomics. It is indeed an editor entirely in text mode: each action is done with a key on the keyboard or dedicated commands.
Very powerful, it is above all very practical since it is on the whole minimal for basic applications. It is therefore accessible in case of system failure. Its universality (it is present on all Linux distributions and under Unix) makes it a crucial tool for the administrator.
Its functionalities are:
- Insert, delete, and modify text;
- Copy words, lines, or blocks of text;
- Search and replace characters.
vi
command¶
The vi
command opens the VI text editor.
vi [-c command] [file]
Example:
vi /home/rockstar/file
Option | Information |
---|---|
-c command |
Execute VI by specifying a command at the opening |
If the file exists at the location mentioned by the path, VI reads it and puts it in commands mode.
If the file does not exist, VI opens a blank file, displaying an empty page on the screen. When the file is saved, it will take the name specified with the command.
If the command vi
is executed without specifying a file name, VI opens a blank file and displays an empty page on the screen. When the file is saved, VI will ask for a file name.
The vim
editor takes the interface and functions of VI with many improvements.
vim [-c command] [file]
Among these improvements, the user has syntax highlighting, which is useful for editing shell scripts or configuration files.
During a session, VI uses a buffer file to record all the user's changes.
Note
The original file is not modified as long as the user has not saved his work.
At startup, VI is in commands mode.
Tip
A line of text is ended by pressing Enter but if the screen is not wide enough, VI makes automatic line breaks, wrap configuration by default. These line breaks may not be desired, this is the nowrap configuration.
To exit VI from the Commands mode, press :, then type:
q
to exit without saving (quit);w
to save your work (write);wq
(write quit) orx
(eXit) to save and exit.
In command mode, Click the Z key of uppercase status twice in a row to save and exit.
You must add ! to the previous commands to force the exit without confirmation.
Warning
There is no periodic backup, so you must remember to save your work regularly.
Operating mode¶
In VI, there are 3 working modes:
- The command mode;
- The insertion mode;
- The ex mode.
The philosophy of VI is to alternate between the command mode and the insertion mode.
The third mode, ex, is a footer command mode from an old text editor.
The Command Mode¶
This is the default mode when VI starts up. To access it from any of the other modes, simply press the Esc key.
At this time, all keyboard typing is interpreted as commands and the corresponding actions are executed. These are essentially commands for editing text (copy, paste, undo, ...).
The commands are not displayed on the screen.
The Insert mode¶
This is the text modification mode. To access it from the command mode, you have to press special keys that will perform an action in addition to changing the mode.
The text is not entered directly into the file but into a buffer zone in the memory. The changes are only effective when the file is saved.
The Ex mode¶
This is the file modification mode. To access it, you must first switch to command mode, then enter the ex command frequently starting with the character :
.
The command is validated by pressing the Enter key.
Moving the cursor¶
In command mode, there are several ways to move the cursor.
The mouse is not active in a text environment but is in a graphic environment, it is possible to move it character by character, but shortcuts exist to go faster.
VI remains in command mode after moving the cursor.
The cursor is placed under the desired character.
From a character¶
- Move one or
n
characters to the left:
Left, N Left, H or N H
- Move one or
n
characters to the right:
Right, N Right, L or N L
- Move one or
n
characters up:
Up, N Up, K or N K
- Move one or
n
characters down:
Down, N Down, J or N J
- Move to the end of the line:
$ or End
- Move to the beginning of the line:
0 or POS1
From the first character of a word¶
Words are made up of letters or numbers. Punctuation characters and apostrophes separate words.
If the cursor is in the middle of a word W moves to the next word, B moves to the beginning of the word.
If the line is finished, VI goes automatically to the next line.
- Move one or
n
words to the right:
W or N W
- Move one or
n
words to the left:
B or N B
From any location on a line¶
- Move to last line of text:
G
- Move to line
n
:
N G
- Move to the first line of the screen:
H
- Move to the middle line of the screen:
M
- Move to the last line of the screen:
L
Inserting text¶
There are several ways to insert text in command mode.
VI switches to insert mode after entering one of these keys.
Note
VI switches to insertion mode. So you will have to press the Esc key to return to command mode.
In relation to a character¶
- Inserting text before a character:
i (insert)
- Inserting text after a character:
a (append)
In relation to a line¶
- Inserting text at the beginning of a line:
I
- Inserting text at the end of a line:
A
In relation to the text¶
- Inserting text before a line:
O
- Inserting text after a line:
o
Characters, words and lines¶
VI allows text editing by managing:
- characters,
- words,
- lines.
In each case it is possible to :
- delete,
- replace,
- copy,
- cut,
- paste.
These operations are done in command mode.
Characters¶
- Delete one or
n
characters:
x or n x
- Replace a character with another:
r+character
- Replace more than one character with others:
R+characters+Esc
Note
The R command switches to replace mode, which is a kind of insert mode.
Words¶
- Delete (cut) one or
n
words:
d+w or n+d+w
- Copy one or
n
words:
y+w or n+y+w
- Paste a word once or
n
times after the cursor:
P or n+p
- Paste a word once or
n
times before the cursor:
P or n+P
- Replace one word:
C+W+word+Esc
Tip
It is necessary to position the cursor under the first character of the word to cut (or copy) otherwise VI will cut (or copy) only the part of the word between the cursor and the end. To delete a word is to cut it. If it is not pasted afterwards, the buffer is emptied and the word is deleted.
Lines¶
- Delete (cut) one or
n
lines:
d+d or n+d+d
- Copy one or
n
lines:
y+y or n+y+y
- Paste what has been copied or deleted once or
n
times after the current line:
p or n+p
- Paste what has been copied or deleted once or
n
times before the current line:
P or n+P
- Delete (cut) from the beginning of the line to the cursor:
d+0
- Delete (cut) from the cursor to the end of the line:
d+$
- Copy from the beginning of the line to the cursor:
y+0
- Copy from the cursor to the end of the line:
y+$
- Delete (cut) the text from the current line:
d+L or d+G
- Copy the text from the current line:
y+L or y+G
Cancel an action¶
- Undo the last action:
u
- Undo the actions on the current line:
U
Cancel cancellation¶
- Cancel a cancellation
Ctrl+R
EX commands¶
The Ex mode allows you to act on the file (saving, layout, options, ...). It is also in Ex mode where search and replace commands are entered. The commands are displayed at the bottom of the page and must be validated with the Enter key.
To switch to Ex mode, from command mode, type :.
File line numbers¶
- Show/hide numbering:
:set nu
or the longer :set number
:set nonu
or the longer :set nonumber
Search for a string¶
- Search for a string from the cursor:
/string
- Search for a string before the cursor:
?string
- Find the next matching string:
n
- Find the previous matching string:
N
There are wildcards to facilitate the search in VI.
[]
: Searches for a range of characters or a single character whose possible values are specified.
Example:
/[Ww]ord
: search word or Word
/[1-9]word
: search 1word, 2word … x
word where x
is a number
^
: Search for lines that begin with a characters.
Example:
/^Word
$
: Search for lines that end with characters.
Example:
/Word$
.
: Search for any single character except newline characters.
Example:
/W.rd
: search Word, Ward …
*
: The number of times the previous character matches, 0 times, or any number of times.
Example:
/W*d
Note: If you want to ignore case (temporary) when matching strings, Please type the :set ic
.
Replace a string¶
From the 1st to the last line of the text, replace the searched string by the specified string:
:1,$ s/search/replace
Note: You can also use :0,$s/search/replace
to specify starting at the absolute beginning of the file.
From line n
to line m
, replace the searched string with the specified string:
:n,m s/search/replace
By default, only the first occurrence found of each line is replaced. To force the replacement of each occurrence, you have to add /g
at the end of the command:
:n,m s/search/replace/g
Browse an entire file to replace the searched string with the specified string:
:% s/search/replace
Deletes the specified row¶
- Delete a blank line
:g/^$/d
- Delete lines with line numbers n to m
:n,md
- Delete the line on which the string is located
:g/string/d
- Delete a line that does not contain a string
:g!/string/d
- Delete all lines that begin with #
:g/^#/d
The g here stands for global.
File operations¶
- Save the file:
:w
- Save under another name:
:w file
- Save from line
n
to linem
in another file:
:n,m w file
- Reload the last record of the file:
e!
- Paste the content of another file after the cursor:
:r file
- Quit editing a file without saving:
:q
- Quit editing a file that has been modified during the session but not saved:
:q!
- Exit the file and save:
:wq
or :x
Other functions¶
Executing VI by specifying the options to be loaded for the session is possible. To do this, you must use the -c
option:
vi -c "set nu" /home/rockstar/file
It is also possible to enter the Ex commands in a file named .exrc
in the user's login directory. The commands will be read and applied at each VI or VIM startup.
vimtutor
command¶
There is a tutorial for learning how to use VI. It is accessible with the command vimtutor
.
vimtutor