diff --git a/reference/7.2/PSReadLine/About/about_PSReadLine.md b/reference/7.2/PSReadLine/About/about_PSReadLine.md index a6397939528d..8f6a7a89f151 100644 --- a/reference/7.2/PSReadLine/About/about_PSReadLine.md +++ b/reference/7.2/PSReadLine/About/about_PSReadLine.md @@ -133,14 +133,21 @@ Delete the character before the cursor. - Vi insert mode: `` - Vi command mode: ``, `` -### BackwardDeleteLine +### BackwardDeleteInput -Like BackwardKillLine - deletes text from the point to the start of the line, +Like BackwardKillInput - deletes text from the point to the start of the input, but does not put the deleted text in the kill-ring. - Cmd: `` - Vi insert mode: ``, `` -- Vi command mode: ``, ``, `` +- Vi command mode: ``, `` + +### BackwardDeleteLine + +Like BackwardKillLine - deletes text from the point to the start of the line, +but does not put the deleted text in the kill-ring. + +- Vi command mode: `` ### BackwardDeleteWord @@ -148,13 +155,20 @@ Deletes the previous word. - Vi command mode: ``, `` -### BackwardKillLine +### BackwardKillInput -Clear the input from the start of the input to the cursor. The cleared text is +Clear the text from the start of the input to the cursor. The cleared text is placed in the kill-ring. - Emacs: ``, `` +### BackwardKillLine + +Clear the text from the start of the current logical line to the cursor. The cleared text is +placed in the kill-ring. + +- Function is unbound. + ### BackwardKillWord Clear the input from the start of the current word to the cursor. If the @@ -271,15 +285,22 @@ Delete the next word. - Vi command mode: `` -### ForwardDeleteLine +### ForwardDeleteInput -Like ForwardKillLine - deletes text from the point to the end of the line, but +Like KillLine - deletes text from the point to the end of the input, but does not put the deleted text in the kill-ring. - Cmd: `` - Vi insert mode: `` - Vi command mode: `` +### ForwardDeleteLine + +Deletes text from the point to the end of the current logical line, but +does not put the deleted text in the kill-ring. + +- Function is unbound + ### InsertLineAbove A new empty line is created above the current line regardless of where the