From 166a749cf89e7add82fd62272c48fd0d9608e6a6 Mon Sep 17 00:00:00 2001 From: trinib Date: Thu, 17 Nov 2022 06:38:11 -0400 Subject: [PATCH] Update README.md --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 59661d4..284e710 100644 --- a/README.md +++ b/README.md @@ -4274,16 +4274,25 @@ Inspired by RehanSaeed/ | Ctrl+E | Moves cursor to end of text in line | | Ctrl+B | Moves cursor backward one character position | | Ctrl+F | Moves cursor forward one character position | +| Alt+F | Moves cursor one word forward in line | +| Alt+B | Moves cursor one word backwards in line | | Ctrl+U | Erase a line of input from cursor right to left | | Ctrl+K | Erase a line of input from cursor left to right | | Ctrl+D | Erase character forward from cursor left to right | | Ctrl+H | Erase character backward from cursor right to left | +| Alt+D | Erase the next word from cursor left to right | | Ctrl+W | Erase backwards to first non-alphanumeric character or empty space | | Ctrl+P | Fetch previous command from history list | | Ctrl+N | Fetch next command from history list | -| Ctrl+Y | Fetch back command previously erased | +| Ctrl+/ | Undo changes in command-line| +| Alt+R | Reverts any changes to a previously executed command that's being edited | +| Alt+. | Fetch and paste the last word at end of a command from previous commands | | Ctrl+T | Reverses the position of the character the cursor is on with the previous character | +| Alt+T | Reverses the position of the word the cursor is in with the previous word | +| Alt+U | Capitalizes every character from cursor left to right to the end of one word | +| Alt+L | UnCapitalizes every character from cursor left to right to the end of one word | | Ctrl+R | Reverse search commands from history list | +| Ctrl+Y | Causes the process to be stopped| | Ctrl+Z | Pauses a foreground job | | Ctrl+C | Break/Terminate a foreground job | | Ctrl+M | Clear the current line | @@ -4292,16 +4301,7 @@ Inspired by RehanSaeed/ | Ctrl+S | Suspend | | Ctrl+Q | Resume | | Ctrl+D | Log out from a shell (similar to exit) | -| Ctrl+/ | Undo changes in command-line| Ctrl+X(twice)| The cursor jumps back and forth between the current position to the beginning of the line | -| Alt+F | Moves cursor one word forward in line | -| Alt+B | Moves cursor one word backwards in line | -| Alt+D | Erase the next word from cursor left to right | -| Alt+T | Reverses the position of the word the cursor is in with the previous word | -| Alt+U | Capitalizes every character from cursor left to right to the end of one word | -| Alt+L | UnCapitalizes every character from cursor left to right to the end of one word | -| Alt+R | Reverts any changes to a previously executed command that's being edited | -| Alt+. | Fetch and paste the last word at end of a command from previous commands | ### Nano