aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/keymap.rs
diff options
context:
space:
mode:
authorath32021-11-14 15:16:20 +0000
committerGitHub2021-11-14 15:16:20 +0000
commit6fa76d9fe77d43ebc18cc78a6a1c1957d72cf59b (patch)
tree8998e33a6b7b19e87c79dae0b8c1edc824ab4e3e /helix-term/src/keymap.rs
parentedc976b6bb36c6017bf59691abbde5c086267bfd (diff)
Add trim_selections command (#1092)
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 3280f0f8..fc9fd590 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -603,7 +603,7 @@ impl Default for Keymaps {
// "Q" => replay_macro,
// & align selections
- // _ trim selections
+ "_" => trim_selections,
"(" => rotate_selections_backward,
")" => rotate_selections_forward,