Home  >  Article  >  System Tutorial  >  Learn the basic operations of using vim editor on Linux (copy, paste, replace, line number, undo, multi-file operations)

Learn the basic operations of using vim editor on Linux (copy, paste, replace, line number, undo, multi-file operations)

王林
王林forward
2024-01-02 22:10:051309browse

Text file editing command: vim

1. Three status modes of vim

1) Command mode (default)

Note: Enter ":q!" in command mode to exit vim.

2) Editable mode (enter editable mode by entering lowercase "i" in command mode; press Esc to exit to command mode)

Remarks: Lowercase i, insert at the current cursor; lowercase a, insert after the current cursor.

3) Last line mode (enter through command mode, press Esc to exit to command mode)

Function: Execute non-text editing commands on the last line of the file, save, open the file, write the file name, etc.

For example, ":w" is used to fill in the file name;

For example, the function of ":wq" is to save and exit after filling in the file;

For example "/", search from top to bottom;

For example "?", search from bottom to top;

2. Basic operations of vim

1) Open the file

Learn the basic operations of using vim editor on Linux (copy, paste, replace, line number, undo, multi-file operations)

vim file name will open and enter command mode.

2) Edit file

In command mode, enter lowercase i to enter editing mode;

3) Save the file and exit

Learn the basic operations of using vim editor on Linux (copy, paste, replace, line number, undo, multi-file operations)

After editing is completed, press Esc to return to the command mode and enter ":w" (add the file name if there is no file name);

Learn the basic operations of using vim editor on Linux (copy, paste, replace, line number, undo, multi-file operations)

Enter: q to exit.

3. Vim editing operation (in command mode)

1) Copy operation

Lowercase "yy" copies a single line;

"2yy" copies the 2 lines at the cursor;

……

"nyy" copies the cursor out of n lines.

2) Paste operation

Lowercase "p" is pasted to the next line under the current cursor;

Capital "P" is pasted to the next line under the current cursor;

3) Delete operation

"dd" deletes the current line

"2dd" deletes the current two lines at the cursor;

……

4) Add line operation open

Lowercase "o", insert a blank line in the next line under the current cursor;

Capital "o", insert a blank line in the previous line at the current cursor;

4. Vim’s search and replace operation (in last line mode)

1) Search operation

Function: Find lines containing keywords;

Input "/search object" in command mode to search from top to bottom, press n to search (next);

Learn the basic operations of using vim editor on Linux (copy, paste, replace, line number, undo, multi-file operations)

Input "? Search object" in command mode to search from top to bottom, press n to search (next);

Learn the basic operations of using vim editor on Linux (copy, paste, replace, line number, undo, multi-file operations)

2) Replacement operation

Line replacement

: s/replaced object/new object/gc, press y after the prompt to complete the replacement.

Learn the basic operations of using vim editor on Linux (copy, paste, replace, line number, undo, multi-file operations)Learn the basic operations of using vim editor on Linux (copy, paste, replace, line number, undo, multi-file operations)Learn the basic operations of using vim editor on Linux (copy, paste, replace, line number, undo, multi-file operations)

Full text replacement

: %s/replaced object/new object/gc, follow the line prompts and press y to complete the replacement.

Learn the basic operations of using vim editor on Linux (copy, paste, replace, line number, undo, multi-file operations)Learn the basic operations of using vim editor on Linux (copy, paste, replace, line number, undo, multi-file operations)

Enter: wq (save and exit).

5. Advanced operations of vim 1) Line number setting

Enter ":set nu" in the last line mode to display the line number of the file;

Learn the basic operations of using vim editor on Linux (copy, paste, replace, line number, undo, multi-file operations)

Enter ":set nonu" in the last line mode to turn off the display of file line numbers;

Learn the basic operations of using vim editor on Linux (copy, paste, replace, line number, undo, multi-file operations)

vi ~/.vimrc

2) Editing settings of ~/.vimrc

3) Concurrent operations of multiple files

This operation is convenient for copying and pasting multiple files to each other.

Command: vim file name 1 file name 2 file name 3...

Command: ":args" displays the names of multiple currently opened files at the bottom, [name of current file];

Command: ":next" switches to display the next document;

Command: ":prev" switches to display the previous document;

Command: ":first" switches to display the first document;

Command: ":last" switches the display of the last document.

Learn the basic operations of using vim editor on Linux (copy, paste, replace, line number, undo, multi-file operations)

4) Undo and restore operations

Note: Whether it is u to undo or ctrl r to restore, the premise is that the file cannot be saved.

Lowercase u: change before (undo the most recent action by row, step by step, in timeline units) until already at oldest change (can undo multiple steps);

Uppercase U: Undo only one step;

Learn the basic operations of using vim editor on Linux (copy, paste, replace, line number, undo, multi-file operations)

Ctrl r: change after (restore the undone action by row, step by step and in the timeline) until already at oldest change;

Ctrl R: Restore what was revoked, one step at a time;

Learn the basic operations of using vim editor on Linux (copy, paste, replace, line number, undo, multi-file operations)

How to copy a line, paste and delete a line of data in vi text editing under linux

When using vi, sometimes you want to copy a line of data directly, then paste a line or delete a line of data directly

How to copy a row of data

Put the cursor in front of the line you want to copy, and then press the yy letter key twice
Then place the cursor where you want to copy and press the p letter key on the keyboard
To delete a line, move the cursor to the line to be deleted and press the dd key twice

The following is a description of the relevant keys:

x,X: In a line, x is to delete one character backward (equivalent to the del key), and X is to delete one character forward (equivalent to the backspace key).
dd: Delete the entire line where the cursor is.
ndd: n is a number. Starting from the cursor, delete n columns down.
yy: Copy the line where the cursor is.
nyy: n is a number. Copy n lines down where the cursor is.
p,P: p means to paste the copied data to the line below the cursor, and P means to paste it to the line above the cursor.
u : Undo the previous operation
CTRL r: Redo the previous operation.
Decimal point '.': Repeat the previous action.

Vim common commands (delete, copy, paste, undo, search, insert, cursor movement, select, save, exit)

Basic operations of vim:

Select text

v Starting from the current position of the cursor, the place where the cursor passes will be selected, and then press v to end.
V Starting from the current line of the cursor, all lines passed by the cursor will be selected. Press V again to end.
ctrl v Starting from the current position of the cursor, select the rectangular area formed by the starting point and end point of the cursor, and then press Ctrl v to end.
ggVG selects all the text, where gg means jumping to the beginning of the line, V means selecting the entire line, and G means the end

Delete, copy, paste, undo

d Delete dd Delete the entire line ndd Delete n lines
x Delete a character
u Undo the last operation
ctrl R Undo (undo the undo operation)
y copy (copy to register)
ppaste (default taken from register)

Commonly used ESC first

i Insert text before cursor
a Insert text
after the cursor o Start a new line below and change the current mode to Insert mode
O (capital O) will start a new line above the current line
:q exit
:q! Force quit
:wq Save and exit
ZZ Save and exit

/ Simple search /pp Search pp
in the file Move command
$ Move the cursor to the end of the line 2$ Move to the end of the next line n$ Move to the end of the next n lines
^ Move the cursor to the first non-blank character of the current line
0 (number 0) moves the cursor to the first character of the current line
G Move the cursor to the last line. 33G Move the cursor to line 33
gg jump to the first line

Vim Select All Copy Paste Undo Back Operation

Delete all: After pressing the esc key, first press gg (reach the top), then dG
Copy all: After pressing the esc key, first press gg, then ggyG
Select all and highlight: After pressing the esc key, first press gg, then ggvG or ggVG
Single line copy: press esc key, then yy
Single line deletion: press esc key, then dd
Paste: After pressing esc key, then p
Copy to pasteboard: After selecting all and highlighting, ctrl shift c,
Problem that vim can only paste 50 lines:
Edit ~/.vimrc in the current user's home directory (if it does not exist, create a new file) and add a line
:set viminfo='1000, As for why you need to enter '1000, this is actually not important. The most important thing is to enter
Press u in vim to undo an operation
u Undo the previous operation
Ctrl r restores the previous undone operation
Notice:
If you type "u" twice and your text returns to the original, it should be that your Vim is configured in Vi compatibility mode.
Redo
If you undo too much, you can type CTRL-R (redo) to roll back the previous command. In other words, it undoes an undo. To see an example of execution, enter CTRL-R twice. The character A and the space after it appear:
young intelligent turtle
There is a special version of the undo command: "U" (line undo). The line undo command undoes all previously edited lines
operations on. Enter these commands twice to cancel the previous "U":
A very intelligent turtle
xxxx delete very
A intelligent turtle
xxxxxx Delete turtle
A intelligent
Use "U" to restore row
A very intelligent turtle
Undo "U" with "u"
A intelligent
The "U" command changes itself, the "u" command undoes the operation, and the CTRL-R command redoes the operation. This is a bit messy, but no
Worry, you can switch to any state with the "u" and CTRL-R commands.
Popular text editors often have forward and back features that allow you to move back and forth between previously viewed locations in a file. In vim, use Ctrl-O to go backward and Ctrl-I to go forward.
Related help: :help CTRL-O :help CTRL-I :help jump-motions

The above is the detailed content of Learn the basic operations of using vim editor on Linux (copy, paste, replace, line number, undo, multi-file operations). For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:jb51.net. If there is any infringement, please contact admin@php.cn delete