document keybinds
All checks were successful
Test Rust project / test (ubuntu-latest, stable) (push) Successful in 47s

This commit is contained in:
2026-02-08 22:52:16 -07:00
parent 7b2eb751ab
commit 74955032cc

View File

@@ -25,6 +25,8 @@ Based loosely off sc-im (spreadsheet calculator improvised), which has dumb keyb
| `gg` | Go to beginning of the column | | `gg` | Go to beginning of the column |
| `G` | Go to end of column | | `G` | Go to end of column |
| `gG` | Go to end of the the visual column | | `gG` | Go to end of the the visual column |
| `u`/`Page Down` | Undo[^undo] |
| `Page Up` | Redo[^undo] |
| `i`/`a` | Enter insert mode on current cell | | `i`/`a` | Enter insert mode on current cell |
| `r` | Enter insert mode on current cell, deleting contents | | `r` | Enter insert mode on current cell, deleting contents |
| `v` | Enter visual mode | | `v` | Enter visual mode |
@@ -43,6 +45,8 @@ Based loosely off sc-im (spreadsheet calculator improvised), which has dumb keyb
| n`G` | Jump to row "n" | | n`G` | Jump to row "n" |
| nX | Press "X", "n" times | | nX | Press "X", "n" times |
[^undo]: Page up/down keybinds are (probably) temporary until I can get ctrl+r to work for redo, which is the propper key for this action. See issue #25 for the status on this.
### Visual mode ### Visual mode
| Key | Action | | Key | Action |