aboutsummaryrefslogtreecommitdiff
path: root/helix.toml
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2023-12-28 02:50:52 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2023-12-28 02:50:52 +0100
commit83e8a81b38646a91e5c7b4291309fc832f18d34d (patch)
tree674f401fffeca25c5d90a0a215d844bff2129604 /helix.toml
parentdf266469e0fba4164b6b069bcd495e9a23d4f5d3 (diff)
downloaddotfiles-83e8a81b38646a91e5c7b4291309fc832f18d34d.tar.gz
Added nbuffer navigation shortcuts in normal mode
Diffstat (limited to 'helix.toml')
-rw-r--r--helix.toml2
1 files changed, 2 insertions, 0 deletions
diff --git a/helix.toml b/helix.toml
index 2523219..961aae5 100644
--- a/helix.toml
+++ b/helix.toml
@@ -20,6 +20,8 @@ auto-signature-help = false
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"]