aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src')
-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 da5127b2..db24e97a 100644
--- a/helix-term/src/keymap/default.rs
+++ b/helix-term/src/keymap/default.rs
@@ -336,9 +336,9 @@ pub fn default() -> HashMap<Mode, Keymap> {
"right" => move_char_right,
"C-f" => move_char_right,
"A-b" => move_prev_word_end,
- "A-left" => move_prev_word_end,
+ "C-left" => move_prev_word_end,
"A-f" => move_next_word_start,
- "A-right" => move_next_word_start,
+ "C-right" => move_next_word_start,
"A-<" => goto_file_start,
"A->" => goto_file_end,
"pageup" => page_up,