Add all keyboard shortcuts, and organize them into a table

John Breaux 2022-05-10 19:00:53 -05:00
parent f4c2dd63e4
commit d90b35dd3d

@ -1,4 +1,21 @@
# text.ts: ### Keyboard Shortcuts:
| Description | Keyboard Shortcut |
|---------------------------------------------|---------------------------|
| Open Mind Reader Actions Panel | Ctrl+Shift+? Ctrl+Shift+? |
| Edit Keybinds | Ctrl+Shift+? K |
| Get the Scope of the Current Line | Ctrl+Shift+? C |
| Get the Current Line Number | Ctrl+Shift+? L |
| Get the Indentation of a Line | Ctrl+Shift+? I |
| Get the Number of Selected Lines | Ctrl+Shift+? N |
| Get the Number of Leading Spaces on a Line | Ctrl+Shift+? S |
| Select the Leading White Space on the Line | Ctrl+Shift+? W |
| Increase Font Size | Shift+Alt+Z = |
| Decrease Font Size | Shift+Alt+Z - |
| Reset Font Size | Shift+Alt+Z 0 |
| Change Theme | Ctrl+K Ctrl+T |
### text.ts:
* fetchNumberOfLeadingSpaces * fetchNumberOfLeadingSpaces
* fetchNumberOfSelectedLines * fetchNumberOfSelectedLines
* fetchLineNumber * fetchLineNumber
@ -9,23 +26,7 @@
* getLeadingSpaces * getLeadingSpaces
* selectLeadingWhitespace * selectLeadingWhitespace
## lexer.ts: ### lexer.ts:
* getLeadingSpacesByIndex * getLeadingSpacesByIndex
* getLeadingSpacesByArithmetic * getLeadingSpacesByArithmetic
### Keybindings:
* Edit keybinds -> Ctrl+Shift+/K
* Color Theme -> Ctrl+K or Ctrl+T
-------------------------------------------
* Increase Font Scale -> Shift+Alt+Z=
* Decrease Font Scale -> Shift+Alt+Z-
* Reset Font Scale -> Shift+Alt+Z0
-------------------------------------------
* Get the Current Line Number -> Ctrl+Shift+/L
* Get the Number of Line Indentations -> Ctrl+Shift+/l
* Get the Number of Leading Spaces -> Ctrl+Shift+/S
* Get the Number of Selected Lines -> Ctrl+Shift+/N
-------------------------------------------
* Select the Leading Whitespace -> Ctrl+Shift+/W
-------------------------------------------