diff options
author | Gokul Soumya | 2022-02-08 04:45:40 +0000 |
---|---|---|
committer | GitHub | 2022-02-08 04:45:40 +0000 |
commit | f0cd02d5ef90e549e5e9f5dfce1d2317ad978b72 (patch) | |
tree | b54635ab23e31fba05b37f0e86c10863dc854c53 /book/src | |
parent | 828d39e736e50057abf1c3a0877fac6b8d3efaa8 (diff) |
Update keybind docs for treesitter, view mode (#1628)
Diffstat (limited to 'book/src')
-rw-r--r-- | book/src/keymap.md | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/book/src/keymap.md b/book/src/keymap.md index 905ec48f..f7e5462f 100644 --- a/book/src/keymap.md +++ b/book/src/keymap.md @@ -89,6 +89,7 @@ | <code>Alt-|</code> | Pipe each selection into shell command, ignoring output | `shell_pipe_to` | | `!` | Run shell command, inserting output before each selection | `shell_insert_output` | | `Alt-!` | Run shell command, appending output after each selection | `shell_append_output` | +| `$` | Pipe each selection into shell command, keep selections where command returned 0 | `shell_keep_pipe` | ### Selection manipulation @@ -113,16 +114,14 @@ | `%` | Select entire file | `select_all` | | `x` | Select current line, if already selected, extend to next line | `extend_line` | | `X` | Extend selection to line bounds (line-wise selection) | `extend_to_line_bounds` | -| | Expand selection to parent syntax node TODO: pick a key (**TS**) | `expand_selection` | | `J` | Join lines inside selection | `join_selections` | | `K` | Keep selections matching the regex | `keep_selections` | | `Alt-K` | Remove selections matching the regex | `remove_selections` | -| `$` | Pipe each selection into shell command, keep selections where command returned 0 | `shell_keep_pipe` | | `Ctrl-c` | Comment/uncomment the selections | `toggle_comments` | -| `Alt-k` | Expand selection to parent syntax node | `expand_selection` | -| `Alt-j` | Shrink syntax tree object selection | `shrink_selection` | -| `Alt-h` | Select previous sibling node in syntax tree | `select_prev_sibling` | -| `Alt-l` | Select next sibling node in syntax tree | `select_next_sibling` | +| `Alt-k` | Expand selection to parent syntax node (**TS**) | `expand_selection` | +| `Alt-j` | Shrink syntax tree object selection (**TS**) | `shrink_selection` | +| `Alt-h` | Select previous sibling node in syntax tree (**TS**) | `select_prev_sibling` | +| `Alt-l` | Select next sibling node in syntax tree (**TS**) | `select_next_sibling` | ### Search @@ -155,10 +154,10 @@ over text and not actively editing it). | `m` | Align the line to the middle of the screen (horizontally) | `align_view_middle` | | `j` , `down` | Scroll the view downwards | `scroll_down` | | `k` , `up` | Scroll the view upwards | `scroll_up` | -| `f` | Move page down | `page_down` | -| `b` | Move page up | `page_up` | -| `d` | Move half page down | `half_page_down` | -| `u` | Move half page up | `half_page_up` | +| `Ctrl-f` | Move page down | `page_down` | +| `Ctrl-b` | Move page up | `page_up` | +| `Ctrl-d` | Move half page down | `half_page_down` | +| `Ctrl-u` | Move half page up | `half_page_up` | #### Goto mode |