aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/keymap.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-09-21 15:51:49 +0000
committerBlaž Hrastnik2021-09-24 01:30:28 +0000
commit2e0803c8d9ec0028c0d018be251c7c2b781247b3 (patch)
tree342c9a4745c8becd490c1ecddaa38b11d24e6b9a /helix-term/src/keymap.rs
parent75dba1f9560c6ea579e79ff074e60ba2fb87ca63 (diff)
Implement 'remove_primary_selection' as Alt-,
This allows removing search matches from the selection Fixes #713
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r--helix-term/src/keymap.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs
index 4343a0b6..cd4d3a32 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -499,6 +499,7 @@ impl Default for Keymaps {
// TODO: and another method for inverse
"," => keep_primary_selection,
+ "A-," => remove_primary_selection,
// "q" => record_macro,
// "Q" => replay_macro,