From b0aaf089958f59b3d7a1eb03dbb46db8f9a2b914 Mon Sep 17 00:00:00 2001 From: Gokul Soumya Date: Mon, 7 Mar 2022 13:16:14 +0530 Subject: 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.--- helix-term/src/keymap.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'helix-term/src/keymap.rs') diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index a5a615f3..a203b4e2 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -607,7 +607,7 @@ impl Default for Keymaps { "D" => goto_first_diag, "f" => goto_prev_function, "c" => goto_prev_class, - "p" => goto_prev_parameter, + "a" => goto_prev_parameter, "o" => goto_prev_comment, "space" => add_newline_above, }, @@ -616,7 +616,7 @@ impl Default for Keymaps { "D" => goto_last_diag, "f" => goto_next_function, "c" => goto_next_class, - "p" => goto_next_parameter, + "a" => goto_next_parameter, "o" => goto_next_comment, "space" => add_newline_below, }, -- cgit v1.2.3-70-g09d2