aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/keymap.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2020-12-14 07:02:07 +0000
committerBlaž Hrastnik2020-12-14 07:02:07 +0000
commit2bfdcede32586af01e1e7cda686a48525e0154bd (patch)
tree669b436ff788e499ebdea604dd62f32c3f3d53a1 /helix-term/src/keymap.rs
parentf92998a14b3017371c6a55756c60c03e126ae23f (diff)
split_selection
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 304a173c..884c04a1 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -156,8 +156,8 @@ pub fn default() -> Keymaps {
vec![key!('o')] => commands::open_below,
vec![key!('d')] => commands::delete_selection,
vec![key!('c')] => commands::change_selection,
- vec![shift!('S')] => commands::split_selection,
vec![key!('s')] => commands::split_selection_on_newline,
+ vec![shift!('S')] => commands::split_selection,
vec![key!(';')] => commands::collapse_selection,
// TODO should be alt(;)
vec![key!('%')] => commands::flip_selections,