readme updates

This commit is contained in:
jasonwilliams 2024-01-07 16:35:48 +00:00
parent 5c4ca51485
commit b371b4aec5

View File

@ -36,6 +36,7 @@ around movements, (i.e moving the editor from one window to another).
| Command | Description |
| ---------------- | ------------------------------------------------------- |
| `ctrl + w, c` | Close window (alias to ctrl + w, q) |
| `ctrl + w, m, v` | Move editor to the next group vertically (to the right) |
| `ctrl + w, m, s` | Move editor to the next group horizontally (below) |
| `ctrl + w, m, p` | Move editor back to the previous group |
@ -46,6 +47,13 @@ Most of the differences will be related to the fact VSCode doesn't have TreeSitt
- `mif/maf` both do the same, they will select the outer function range. Getting the inner function body isn't achievable because LSP doesn't give us that, and we can't hardcode blocks (incompatibilty with python for example)
### Movements
| Command | Description |
| --------- | ---------------------------- |
| `alt + k` | Move lines or selection up |
| `alt + j` | Move lines or selection down |
## Outstanding
Feel free to pick up any of these if you wanted to contribute.