diff options
author | Cor | 2021-07-17 12:09:46 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-08-05 08:04:26 +0000 |
commit | f160008add247567f8e6704b54e9cd87fbe72983 (patch) | |
tree | 751264f3dd299fe7cc9a18adb80d0856e23d2b9a /helix-term/src/keymap.rs | |
parent | c9cbc344fc28dee5a0a5d3a7662c5c223067ab23 (diff) |
Vertical Selection
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r-- | helix-term/src/keymap.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index cba3b3d0..77a3b8bc 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -387,6 +387,10 @@ impl Default for Keymaps { "c" => change_selection, // TODO: also change delete without yanking + "C" => copy_selection_on_next_line, + "alt-C" => copy_selection_on_prev_line, + + "s" => select_regex, "A-s" => split_selection_on_newline, "S" => split_selection, |