aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/keymap.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r--helix-term/src/keymap.rs4
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,