Correct help for editor's paste command

This commit is contained in:
Chiizujin 2024-03-31 15:42:37 +11:00
parent a3066c9b59
commit 505310cf25
2 changed files with 2 additions and 2 deletions

View file

@ -134,7 +134,7 @@ the in-editor help command (`:h`).
:y <l> - yank (copy) line <l> to the copy buffer
:x <l> - cut line <l> and store it in the copy buffer
:p <l> - put (paste) previously copied line directly after <l>
:p <l> - put (paste) previously copied line directly before <l>
:i <l> <txt> - insert new text <txt> at line <l>. Old line will move down
:r <l> <txt> - replace line <l> with text <txt>
:I <l> <txt> - insert text at the beginning of line <l>

View file

@ -88,7 +88,7 @@ _HELP_TEXT = _(
:y <l> - yank (copy) line(s) <l> to the copy buffer
:x <l> - cut line(s) <l> and store it in the copy buffer
:p <l> - put (paste) previously copied line(s) directly after <l>
:p <l> - put (paste) previously copied line(s) directly before <l>
:i <l> <txt> - insert new text <txt> at line <l>. Old line will move down
:r <l> <txt> - replace line <l> with text <txt>
:I <l> <txt> - insert text at the beginning of line <l>