Added nbuffer navigation shortcuts in normal mode
| Author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2023-12-28 02:50:52 +0100 |
| Committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2023-12-28 02:50:52 +0100 |
| Commit | 83e8a81b38646a91e5c7b4291309fc832f18d34d (patch) |
|
-rw-r--r-- |
helix.toml | 2 |
1 files changed, 2 insertions, 0 deletions
| diff --git a/helix.toml b/helix.toml | |||
| ... | |||
| 20 | 20 | ||
| 21 | [keys.normal] |
21 | [keys.normal] |
| 22 | "esc" = [ "collapse_selection", "keep_primary_selection" ] |
22 | "esc" = [ "collapse_selection", "keep_primary_selection" ] |
| 23 | "A-," = [ "goto_previous_buffer" ] |
||
| 24 | "A-." = [ "goto_next_buffer" ] |
||
| 23 | "{" = [ "goto_prev_paragraph" ] |
25 | "{" = [ "goto_prev_paragraph" ] |
| 24 | "}" = [ "goto_next_paragraph" ] |
26 | "}" = [ "goto_next_paragraph" ] |
| 25 | "D" = ["ensure_selections_forward", "extend_to_line_end", "delete_selection"] |
27 | "D" = ["ensure_selections_forward", "extend_to_line_end", "delete_selection"] |
| ... | |||