File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -288,7 +288,7 @@ These operations are done in *command* mode.
288288
289289* Paste a word once or ` n ` times after the cursor:
290290
291- ++p ++ or ++"n"+"p"++
291+ ++"p" ++ or ++"n"+"p"++
292292
293293* Paste a word once or ` n ` times before the cursor:
294294
@@ -337,13 +337,21 @@ These operations are done in *command* mode.
337337
338338++"y"+"$"++
339339
340- * Delete (cut) the text from the current line:
340+ * Delete (cut) the contents from the cursor line to the last line of the file:
341+
342+ ++"d"+g++
343+
344+ * Delete (cut) the contents from the cursor line to the last line of the screen:
345+
346+ ++"d"+l++
347+
348+ * Copy the content from the cursor line to the end of the file:
341349
342- ++"d"+l++ or ++"d "+g++
350+ ++"y "+g++
343351
344- * Copy the text from the current line:
352+ * Copy the content from the cursor line to the end of the screen
345353
346- ++"y"+l++ or ++"y"+g++
354+ ++"y"+l++
347355
348356### Cancel an action
349357
You can’t perform that action at this time.
0 commit comments