diff --git a/reference/7.3/PSReadLine/About/about_PSReadLine_Functions.md b/reference/7.3/PSReadLine/About/about_PSReadLine_Functions.md index 7a2f126ede43..2cac14b65370 100644 --- a/reference/7.3/PSReadLine/About/about_PSReadLine_Functions.md +++ b/reference/7.3/PSReadLine/About/about_PSReadLine_Functions.md @@ -133,6 +133,16 @@ the host so the prompt is evaluated again. - Vi insert mode: `` - Vi command mode: `` +### CapitalizeWord + +> Added in PSReadLine 2.3.0 + +Convert the first character of the next word to upper case and the remaining +characters to lower case. + +- Cmd: `` +- Emacs: `` + ### Copy Copy selected region to the system clipboard. If no region is selected, copy @@ -237,6 +247,15 @@ Delete the next word. - Vi command mode: `` +### DowncaseWord + +> Added in PSReadLine 2.3.0 + +Convert the next word to lower case. + +- Cmd: `` +- Emacs: `` + ### ForwardDeleteInput Like KillLine - deletes text from the point to the end of the input, but @@ -404,6 +423,15 @@ the cursor. The cleared text is placed in the kill-ring. - Emacs: `` +### UpcaseWord + +> Added in PSReadLine 2.3.0 + +Convert the next word to upper case. + +- Cmd: `` +- Emacs: `` + ### ValidateAndAcceptLine Attempt to execute the current input. If the current input is incomplete (for