From e4f5c6052b07fbafe84a04379f8ca9a6f8df6689 Mon Sep 17 00:00:00 2001 From: trinib Date: Sun, 13 Nov 2022 17:46:40 -0400 Subject: [PATCH] Update README.md --- README.md | 41 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 39 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index de0b4fd..8275fa2 100644 --- a/README.md +++ b/README.md @@ -4302,6 +4302,43 @@ Inspired by RehanSaeed/ | 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 + +| Key | Function | +| :--: | :-- | +| CTRL + Y | Scrolls page down | +| CTRL + V | Scrolls page up| +| Alt+\ | Got to beginning of file | +| Alt+/ | Got to end of file | +| Ctrl+H | Delete character before cursor | +| Ctrl+D | Erase character under cursor | +| Alt+Backspace | Erase word to the left | +| Ctrl+Del |Erase word to the right | +| Alt+Del | Erase current line | +| Alt+^ | Copy selected text | +| CTRL + U | To paste the text from the cut buffer (similar to clipboard) into the selected line. | +| CTRL + K | It cuts the entire selected line to the cut buffer. | +| ALT + A | To select text. You can combine this command with CTRL + K to cut a specific part of the text to the cut buffer. | +| Alt+U | Undo last action | +| Alt+E | Redo last undone action | +| Ctrl+Q | Start backward search. Press Ctrl+Q to search for the same phrase again | +| Ctrl+W | Start forward search. Press ALT + W to search for the same phrase again | +| Ctrl+\ | Replaces string or a regular expression | +| Alt+3 | Comment/uncomment line/region | +| CTRL + R | Opens a file and inserts it at the current cursor position | +| Ctrl-O | Write changes to a file ("Save as") | +| Ctrl-S | Save current file | +| CTRL + X | To exit Nano text editor. It prompts a save request if you made any changes to the file | +| CTRL + G | A Help window will pop out and show you all the available commands | + + + + + + + + +