aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/keymap.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-08-04 02:55:01 +0000
committerBlaž Hrastnik2021-08-05 08:04:26 +0000
commit0793841ac36a2513484e3779363c9bd28f7cc0a4 (patch)
tree699fcab91be3f8e9b7d74a14cb07f333483c1fed /helix-term/src/keymap.rs
parentf160008add247567f8e6704b54e9cd87fbe72983 (diff)
Refactor copy selection vertically
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 77a3b8bc..ef283a63 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -388,7 +388,7 @@ impl Default for Keymaps {
// TODO: also change delete without yanking
"C" => copy_selection_on_next_line,
- "alt-C" => copy_selection_on_prev_line,
+ "A-C" => copy_selection_on_prev_line,
"s" => select_regex,