I often use VI editor, but basically still the habit of windows, no system to learn its function, today encountered a copy of the text there is no way to see the solution as follows:
Reference text:
--------------------------------------------------------------------------------------------------------------- ---
Often self-reflection, sensitive thinkers
You can control yourself and the surrounding environment better and more thoroughly than the average person.
You hate superficial and superficial things; you'd rather be alone than gossip, but your relationship with friends is very
In depth, this keeps your mind in harmony and comfort.
You don't mind being alone for a long time, and seldom feel dull.
--------------------------------------------------------------------------------------------------------------- ---
For example: I want to copy the words "Myself and surrounding environment", first move the cursor to "from" above, then press the V key, then the L key to move the cursor to the left, then the text will be selected, until the border word press the Y key to copy.
Then press the P key in a place to paste in.
Say:
1. v+ move cursor to select text.
2, y can copy the selected text
3, p can be pasted
Copy one line: yy
Copy the current cursor position to the end of the line: y$
Copy the current cursor position to the beginning of the line: y^
Copy three lines: 3yy, that is, from the current cursor + the next two lines.
Cut text:
You can press Y to copy after selecting the text with V, and then press p to paste if you press D to cut.
Cut one line: DD
Cuts the position of the current line cursor to the end of the line: d$
Cuts the current line cursor position to the beginning of the row: d^
Front Chesan: 3DD, that is, from the current line + the next two lines are cut.
VI & VIM Copy, paste, cut text