diff --git a/docs/index.html b/docs/index.html index 0ac22e5dd..0d2a8fd48 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1964,8 +1964,6 @@
UI Keys in Text Editing areas (cannot be remapped)
- *** TODO!!! *** -Function | @@ -1973,34 +1971,128 @@Key (macOS) | ||||
---|---|---|---|---|---|
Move cursor to beginning of line | -Home, Control + a | -Home, Control + a | +Move cursor to previous character | +Left arrow | +Left arrow |
... | -... | -... | +Move cursor to next character | +Right arrow | +Right arrow | +
Move cursor to beginning of current word | +Control + Left arrow | +Option + Left arrow | +|||
Move cursor to beginning of next word | +Control + Right arrow | +Option + Right arrow | +|||
Move cursor to beginning of line | +Home | +Home, Control + a, Command + Left arrow | +|||
Move cursor to end of line | +End | +End, Control + e, Command + Right arrow | +|||
Delete character to left of cursor | +Backspace | +Backspace | +|||
Delete character to right of cursor | +Delete, Control + d | +Delete, Control + d | +|||
Delete word to left of cursor | +Control + Backspace, Control + w | +Option + Backspace, Control + w | +|||
Delete word to right of cursor | +Control + Delete, Alt + d | +Option + Delete | +|||
Delete all text to beginning of line | +Control + Home, Control + u | +Command + Backspace, Control + u | +|||
Delete all text to end of line | +Control + End, Control + k | +Control + k | +|||
Select character to left of cursor | +Shift + Left arrow | +Shift + Left arrow | +|||
Select character to right of cursor | +Shift + Right arrow | +Shift + Right arrow | +|||
Select all text to beginning of current word | +Shift-Control + Left arrow | +Shift-Option + Left arrow | +|||
Select all text to beginning of next word | +Shift-Control + Right arrow | +Shift-Option + Right arrow | +|||
Select all text to beginning of line | +Shift + Home | +Shift + Home, Shift-Control + a, Shift-Command + Left arrow | +|||
Select all text to end of line | +Shift + End | +Shift + End, Shift-Control + e, Shift-Command + Right arrow | +|||
Select all text | +Control + a | +Command + a | +|||
Cut selected text | +Control + x, Shift + Delete | +Command + x | +|||
Copy selected text | +Control + c, Control + Insert | +Command + c | +|||
Paste at cursor and replace selection | +Control + v, Shift + Insert | +Command + v | +|||
Undo last operation | +Control + z | +Command + z | +|||
Redo last operation | +Control + y, Shift-Control + z | +Command + y, Shift-Command + z |
Key | Editor Function |
---|---|
Home, Control + a | Move cursor to beginning of line |
End, Control + e | Move cursor to end of line |
Delete, Control + d | Remove character to right of cursor |
Backspace | Remove character to left of cursor |
Control + k | Remove all characters from cursor to end of line |
Control + u | Remove all characters from cursor to beginning of line |
Control + w | Remove entire word to left of cursor |
Control + Left arrow | Move cursor to beginning of word to the left |
Control + Right arrow | Move cursor to beginning of word to the right |
Control + c, Control + Insert | Copy entire line to clipboard |
Control + v, Shift + Insert | Paste clipboard contents |
Control + x, Shift + Delete | Cut entire line to clipboard |