diff options
author | Gokul Soumya | 2022-03-07 07:46:14 +0000 |
---|---|---|
committer | GitHub | 2022-03-07 07:46:14 +0000 |
commit | b0aaf089958f59b3d7a1eb03dbb46db8f9a2b914 (patch) | |
tree | 490163616352b31fd21876160b36b0795379e801 /book/src | |
parent | 79caa7b72bef94bd820758b2ebc20887324f7416 (diff) |
Change parameter object keybind from `p` to `a` (#1708)
This is largely to avoid a collision with the soon
to be merged paragraph object which takes up the p key.
Diffstat (limited to 'book/src')
-rw-r--r-- | book/src/keymap.md | 4 | ||||
-rw-r--r-- | book/src/usage.md | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/book/src/keymap.md b/book/src/keymap.md index 2549fbaf..f9e0824e 100644 --- a/book/src/keymap.md +++ b/book/src/keymap.md @@ -268,8 +268,8 @@ Mappings in the style of [vim-unimpaired](https://github.com/tpope/vim-unimpaire | `[f` | Go to previous function (**TS**) | `goto_prev_function` | | `]c` | Go to next class (**TS**) | `goto_next_class` | | `[c` | Go to previous class (**TS**) | `goto_prev_class` | -| `]p` | Go to next parameter (**TS**) | `goto_next_parameter` | -| `[p` | Go to previous parameter (**TS**) | `goto_prev_parameter` | +| `]a` | Go to next argument/parameter (**TS**) | `goto_next_parameter` | +| `[a` | Go to previous argument/parameter (**TS**) | `goto_prev_parameter` | | `]o` | Go to next comment (**TS**) | `goto_next_comment` | | `[o` | Go to previous comment (**TS**) | `goto_prev_comment` | | `[space` | Add newline above | `add_newline_above` | diff --git a/book/src/usage.md b/book/src/usage.md index 9ae1eac5..010e30f5 100644 --- a/book/src/usage.md +++ b/book/src/usage.md @@ -68,7 +68,7 @@ Currently supported: `word`, `surround`, `function`, `class`, `parameter`. | `(`, `[`, `'`, etc | Specified surround pairs | | `f` | Function | | `c` | Class | -| `p` | Parameter | +| `a` | Argument/parameter | | `o` | Comment | > NOTE: `f`, `c`, etc need a tree-sitter grammar active for the current |