From d12d4c3a2e065ff87883fd098e990864f98642a6 Mon Sep 17 00:00:00 2001 From: Silas Kraume Date: Mon, 10 Jun 2024 00:05:01 +0200 Subject: [PATCH] updated doc --- DOCUMENTATION.md | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/DOCUMENTATION.md b/DOCUMENTATION.md index 1037ebc..d5c6789 100644 --- a/DOCUMENTATION.md +++ b/DOCUMENTATION.md @@ -922,10 +922,10 @@ The currently supported Key bindings are as follows: | Key(s) | default behaviour | shift click | control click | alt click | |--------|:-----------------:|:-----------:|:-------------:|:---------:| -| Arrows | move cursor by char | move cursor by char | move cursor by word | scroll window by char | -| Page Up/Down | move cursor by page | move cursor by page | move cursor by page | scroll window by page | -| Home/Pos | move cursor to start of line | move cursor to start of line | move cursor to start of file | scroll window to start of file | -| End | move cursor to end of line | move cursor to end of line | move cursor to end of file | scroll window to end of file | +| Arrows | move cursor by char | select area by char | move cursor by word | scroll window by char | +| Page Up/Down | move cursor by page | select area by page | move cursor by page | scroll window by page | +| Home/Pos | move cursor to start of line | select area to start of line | move cursor to start of file | scroll window to start of file | +| End | move cursor to end of line | select area to end of line | move cursor to end of file | scroll window to end of file | | Tab | insert a tab or
indent on empty line | decrease indent | - | - | |||||| | Enter | write newline | write newline | write newline | - | @@ -935,12 +935,14 @@ The currently supported Key bindings are as follows: | Undo/^Z | - | - | undo an action | - | | Redo/^Y | - | - | redo an action | - | |||||| +| SelectAll/^A | - | - | select the entire file | - | +| Copy/^C | - | - | copy selected text | - | | Save/^S | - | - | save changes | save changes | | Jump/^E | - | - | prompt to jump to specific line | - | | Find/^F | - | - | prompt to search in the file | - | -| Background/^B | - | - | put the editor in the background
(UNIX only) | - | | Reload/^R | - | - | prompt to reload the file | - | | Insert/^N | - | - | Insert a Byte Sequence | - | +| Background/^B | - | - | put the editor in the background
(UNIX only) | - | | Quit/^Q | - | - | close editor
(prompt to save, if neccessary) | - | | Interrupt/^D | - | - | interrupt program | - | @@ -956,10 +958,10 @@ The currently supported Key bindings are as follows: | Key(s) | default behaviour | shift click | control click | alt click | |--------|:-----------------:|:-----------:|:-------------:|:---------:| -| Arrows | move cursor by byte | move cursor by byte | move cursor multiple bytes | - | -| Page Up/Down | move cursor by page | move cursor by page | move cursor by page | - | -| Home/Pos | move cursor to start of line | move cursor to start of line | move cursor to start of file | - | -| End | move cursor to end of line | move cursor to end of line | move cursor to end of file | - | +| Arrows | move cursor by byte | select area by byte | move cursor multiple bytes | - | +| Page Up/Down | move cursor by page | select area by page | move cursor by page | - | +| Home/Pos | move cursor to start of line | select area to start of line | move cursor to start of file | - | +| End | move cursor to end of line | select area to end of line | move cursor to end of file | - | |||||| | 0-9 & A-F | edit the current byte | - | - | - | | < | insert a new byte to the left | - | - | - | @@ -967,12 +969,14 @@ The currently supported Key bindings are as follows: | Backspace | reset current byte | reset current byte | remove current byte | reset current byte | | Delete | reset current byte | reset current byte | remove current byte | reset current byte | |||||| +| SelectAll/^A | - | - | select the entire file | - | +| Copy/^C | - | - | copy selected bytes | - | | Save/^S | - | - | save changes | save changes | | Jump/^E | - | - | prompt to jump to a specific byte | - | | Find/^F | - | - | prompt to search a byte(-sequence) in the file | - | -| Background/^B | - | - | put the hex-editor in the background
(UNIX only) | - | | Reload/^R | - | - | prompt to reload the file | - | | Insert/^N | - | - | Insert a Text Sequence | - | +| Background/^B | - | - | put the hex-editor in the background
(UNIX only) | - | | Quit/^Q | - | - | close hex-editor
(prompt to save, if neccessary) | - | | Interrupt/^D | - | - | interrupt program | - |