aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/keymap.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r--helix-term/src/keymap.rs4
1 files changed, 2 insertions, 2 deletions
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,
},