diff options
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r-- | helix-term/src/keymap.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index a1d483c7..044d97eb 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -145,7 +145,7 @@ pub fn default() -> Keymaps { // key!('r') => commands::replace, - key!('0') => commands::move_line_start, + key!('^') => commands::move_line_start, key!('$') => commands::move_line_end, key!('w') => commands::move_next_word_start, |