aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/keymap.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-05-18 09:27:52 +0000
committerBlaž Hrastnik2021-05-18 09:28:32 +0000
commit9c24f1ec0e325da43a81d654ec91cdf68d4ccafc (patch)
treecec2c5a8402eb10e6f0b643f58bfe93399c1f8cb /helix-term/src/keymap.rs
parentf99a6839918d43773e061933cd240b877aec94c0 (diff)
Drop selection_lines completely, change move_line_start binding
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r--helix-term/src/keymap.rs2
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,