aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/keymap/default.rs
diff options
context:
space:
mode:
authorIvan Tham2022-03-07 13:25:26 +0000
committerBlaž Hrastnik2022-04-02 15:46:53 +0000
commit8b91ecde40e95a8ba956881c95da60adbf98abb6 (patch)
tree33298f2273bf8b537cdb46e7478e277497b2527e /helix-term/src/keymap/default.rs
parent64c2490f2d9a9b98d1142243e815d2ff80c99f2a (diff)
Rename _para to _paragraph
Diffstat (limited to 'helix-term/src/keymap/default.rs')
-rw-r--r--helix-term/src/keymap/default.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/keymap/default.rs b/helix-term/src/keymap/default.rs
index a7c1f1de..a8144ebc 100644
--- a/helix-term/src/keymap/default.rs
+++ b/helix-term/src/keymap/default.rs
@@ -104,7 +104,7 @@ pub fn default() -> HashMap<Mode, Keymap> {
"c" => goto_prev_class,
"a" => goto_prev_parameter,
"o" => goto_prev_comment,
- "p" => move_prev_para,
+ "p" => move_prev_paragraph,
"space" => add_newline_above,
},
"]" => { "Right bracket"
@@ -114,7 +114,7 @@ pub fn default() -> HashMap<Mode, Keymap> {
"c" => goto_next_class,
"a" => goto_next_parameter,
"o" => goto_next_comment,
- "p" => move_next_para,
+ "p" => move_next_paragraph,
"space" => add_newline_below,
},