Basic usage of the VI Editor

Source: Internet
Author: User


The VI editor is a standard editor for all UNIX and Linux systems. It is not inferior to any of the latest text editors. Here is a brief introduction to its usage and a small
Sub-commands. The VI editor is identical for any version of UNIX and Linux systems, so you can learn more about it in any other section about VI. VI is also the most
After learning about the basic text editor, you will be able to enjoy the free access in the Linux World.

1. Basic concepts of vi
Basically, VI can be divided into three states: Command mode, insert mode, and last
Line Mode). The functions of each mode are as follows:

1) Command Line Mode)

Control the movement of the screen cursor, delete characters, words, or rows, move and copy a segment and enter the insert mode, or to the last line
Mode.

2) insert mode)

You can enter text only in insert mode. Press ESC to return to command line mode.

3) Baseline Mode)

Save the file or exit VI. You can also set the editing environment, such as searching strings and listing row numbers ...... .
However, we generally simplify VI into two modes in use, that is, the last line mode is also included in the command line mode command.
Mode ).

2. Basic operations of vi
A) Go to VI

After the system prompts you to enter the VI and file name, you will be taken to the VI full screen editing screen:
$ VI myfile
However, after entering Vi, you are in the command mode. You need to switch to the insert mode
Mode. People who use VI for the first time will want to move the cursor first with the upper and lower right keys. As a result, the computer keeps beeping and getting angry with themselves. So after entering VI, do not change it
"Insert mode!

B) switch to insert mode to edit the file

Click "I" under "command mode" to enter "insert mode ".
Mode) ", then you can start to input text.

C) Insert switchover

You are currently in insert
Mode! If you want to move back with the light mark key and delete the word, you need to press ESC to switch to command line mode (command
Mode), and then delete the text.

D) Exit VI and save the file

Under "command mode", click ":" colon to enter "last line mode". For example:

: W filename (enter "w filename" to save the article with the specified filename)

: WQ (enter "WQ" to save the disk and exit VI)

: Q! (Enter Q !, Force exit VI without saving the disk)

3. Command mode function key
1). insert mode

Press "I" to switch to the insert mode "insert mode". Press "I" to enter the insert mode. The input file starts from the current position of the cursor;

After you press "a" to enter the insert mode, the text is entered starting from the next position where the cursor is currently located;

After you press "O" to enter the insert mode, a new row is inserted and text is entered from the beginning of the line.

2) switch from insert mode to Command Line Mode

Press ESC.

3) move the cursor

VI can be moved up, down, left, and right directly with the cursor on the keyboard, but the regular VI uses lowercase letters "H", "J", "K", and "L 」, the cursor is controlled to move one cell to the left, down, up, and right respectively.

Press Ctrl + B to move the screen to the back.

Press Ctrl + F to move the screen to the front.

Press Ctrl + u to move the screen to the back half of the page.

Press Ctrl + D to move the screen half to the front.

Press the number "0": to move to the beginning of the article.

Press g to move to the end of the article.

Press "$" to move to the end of the row where the cursor is located ".

Press ^ to move the cursor to the beginning of the row"

Press W to jump to the beginning of the next word

Press "E": move the cursor to the end of the next word

Press "B": the cursor returns to the beginning of the previous word

Press # l to move the cursor to the # position of the row, such as 5l and 56l.

4). delete text

"X": each time you press the button, the "Next" character of the cursor is deleted.

"# X": for example, "6x" indicates deleting the "Next" 6 Characters of the cursor position.

"X": uppercase X. Each time you press it, the "front" character of the cursor is deleted.

"# X": for example, "20x" indicates the position where the cursor is located, which is a string of 20 characters.

DD: Delete the row where the cursor is located.

「 # Dd 」: delete from the row where the cursor is located # Row

5). Copy

"Yw": copy the character at the end of the cursor to the buffer zone.

# YW: Copy # words to the buffer zone

"YY": copy the row where the cursor is located to the buffer zone.

"# YY": for example, "6yy" indicates copying 6 lines of text from the row where the cursor is located "down.

P: place the characters in the buffer to the cursor position. Note: All copy commands related to "Y" must work with "P" to complete the copy and paste function.

6). Replace

"R": Replace the character at the cursor position.

"R": Replace the character wherever the cursor goes until you press the "ESC" key.

7). Reply to the previous operation

"U": If you mistakenly execute a command, you can immediately press "U" to return to the previous operation. You can perform multiple replies Based on Multiple "U" requests.

8). Change

"CW": change the word at the cursor to the ending point.

"C # W": for example, "c3w" indicates that three words are changed.

9). Jump to the specified row

CTRL + G lists the row numbers of the cursor.

"# G": for example, "15g" indicates moving the cursor to the first row of the article.

4. Introduction to commands in last line mode
Before using "last line mode", remember to press the "ESC" key to confirm that you are already in the "command
Press ":" to enter "last line mode 」.

A) List row numbers

"Set nu": After "set nu" is entered, the row number is listed before each row in the file.

B) jump to a row in the file.

"#": "#" Indicates a number. Enter a number after the colon and press enter to jump to the row. For example, enter the number 15 and press Enter, this will jump to the second line of the article.

C) Search for characters

"/Keyword": First press the "/" key and then enter the character you want to search. If the first search keyword is not what you want, you can always press "N" until you find the keyword you want.

「? Keyword: First press 「?」 Enter the character you want to search for. If the keyword you want for the first time is not what you want, you can press "N" until you find the keyword you want.

D) save the file

"W": Enter "W" in the colon to save the file.

E) Leave Vi

Q: Press Q to exit. If you cannot exit Vi, you can follow Q with 「!」 Force exit VI.

"QW": it is generally recommended to use it with "W" when leaving, so that files can be saved when exiting.

5. VI command list
1. The following table lists some key functions in command mode:

H
Move the cursor one character left

L
Move the cursor one character to the right

K
Move the cursor up a row

J
Move the cursor down a row

^
Move the cursor to the beginning of the line

0
Number "0", move the cursor to the beginning of the article

G
Move cursor to the end of the article

$
Move the cursor to the end of the row

CTRL + F
Forward screen flip

CTRL + B
Flip back

CTRL + d
Front Half Screen

CTRL + u
Flip back half screen

I
Insert characters before the cursor position

A
Add the next character at the cursor position

O
Insert a new row and start from the beginning of the row.

ESC
Return from input to command status

X
Delete characters after the cursor

# X
# Characters After deleting the cursor

X
(Uppercase X), delete the character before the cursor

# X
Delete # characters before the cursor

Dd
Delete the row where the cursor is located

# Dd
Delete # rows from the number of rows where the cursor is located

YW
Copy a word at the cursor position

# YW
Copy the # characters at the cursor position

YY
Copy a line at the cursor position

# YY
Copy the number of rows from the cursor

P
Paste

U
Cancel operation

CW
Change the cursor position.

# CW
# Words for changing the cursor position

2. Some commands in the following Table travel command mode
W filename
Save the file being edited as filename

WQ filename
Save the file being edited as filename and exit vi

Q!
Discard all modifications and exit vi

Set nu
Show row number

/Or?
Search, enter the content to be searched after/, And/is search up and down ,? Is from bottom up to find

N
And/or? If the search content is not the keyword, press N or backward (and/) or forward (and? Continue searching until it is found.

Note the following when using VI for the first time:
1. After opening the file with VI, it is in command mode. You need to switch to insert
Mode. Switch method: click "I" under "command mode" to enter "insert mode ".
Mode) ", then you can start to input text.
2. After editing, you must switch from the insert mode to the command line mode to save the file. to switch to the mode, Press ESC.
3. Save and exit the file: In command mode, enter WQ! (Don't forget the one before WQ :)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.