1. Hit two times the letter D removes the cursor from the row
2.vim + filename Open file positioning cursor at the end of the beginning
VIM +n filename cursor positioned on nth row
Vim +/xxx filename navigates to string xxx first occurrence line
3.vim AA bb cc One-time create or open three files: N/a move to next (top) a file
4. Bottom-line mode
: W Save
: Q exit
:! Forced run
: LS lists all files that are currently open
: N switches to the next file
: 15 high speed positioning to line 15th
/xxx search backwards from the cursor to XXX
?
XXX starts from the cursor and searches forward XXX
5. Command mode
DD deletes the cursor in the row
o Insert a row below the cursor line and enter the input mode
YY the copy cursor is in the row
P paste below the line where the cursor is located
P paste above the line where the cursor is located
Vim Learning Notes