diff options
author | Kangwook Lee (이강욱) | 2021-09-07 14:22:39 +0000 |
---|---|---|
committer | GitHub | 2021-09-07 14:22:39 +0000 |
commit | 7a9db951829d37447a414f03802297f4b43e02a6 (patch) | |
tree | a022e8c4a672d268a6a265a2b089b2c2d8526fb5 /helix-term/src/keymap.rs | |
parent | fd36fbdebfa6508699979dc426725cbbc2dbe295 (diff) |
Add command to extend to line start or end (#717)
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r-- | helix-term/src/keymap.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index aa60482d..1b9d87b5 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -592,8 +592,8 @@ impl Default for Keymaps { "T" => extend_till_prev_char, "F" => extend_prev_char, - "home" => goto_line_start, - "end" => goto_line_end, + "home" => extend_to_line_start, + "end" => extend_to_line_end, "esc" => exit_select_mode, "v" => normal_mode, |