Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions docs/books/admin_guide/05-vi.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ These operations are done in *command* mode.

* Paste a word once or `n` times after the cursor:

++p++ or ++"n"+"p"++
++"p"++ or ++"n"+"p"++

* Paste a word once or `n` times before the cursor:

Expand Down Expand Up @@ -337,13 +337,21 @@ These operations are done in *command* mode.

++"y"+"$"++

* Delete (cut) the text from the current line:
* Delete (cut) the contents from the cursor line to the last line of the file:

++"d"+g++

* Delete (cut) the contents from the cursor line to the last line of the screen:

++"d"+l++

* Copy the content from the cursor line to the end of the file:

++"d"+l++ or ++"d"+g++
++"y"+g++

* Copy the text from the current line:
* Copy the content from the cursor line to the end of the screen

++"y"+l++ or ++"y"+g++
++"y"+l++

### Cancel an action

Expand Down