aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-09-08 07:53:10 +0000
committerBlaž Hrastnik2021-09-24 01:30:17 +0000
commit9ea9e779b2eef293c14ae50d5767035c0a9544a5 (patch)
tree185910e2d59de7c2502d13fc6e1db09e25a59728 /helix-term/src
parenta958d34bfbcf45c01ce0d9c0d76e681fb863fc6a (diff)
experiment: Move keep_primary_selection to ,
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/commands.rs4
-rw-r--r--helix-term/src/keymap.rs5
2 files changed, 5 insertions, 4 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index 117ba046..e3c351f6 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -2825,6 +2825,10 @@ fn open_above(cx: &mut Context) {
fn normal_mode(cx: &mut Context) {
let (view, doc) = current!(cx.editor);
+ if doc.mode == Mode::Normal {
+ return;
+ }
+
doc.mode = Mode::Normal;
doc.append_changes_to_history(view.id);
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs
index f9bfcc50..a83b960e 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -436,7 +436,6 @@ impl Default for Keymaps {
"A" => append_to_line,
"o" => open_below,
"O" => open_above,
- // [<space> ]<space> equivalents too (add blank new line, no edit)
"d" => delete_selection,
// TODO: also delete without yanking
@@ -500,8 +499,7 @@ impl Default for Keymaps {
"K" => keep_selections,
// TODO: and another method for inverse
- // TODO: clashes with space mode
- "space" => keep_primary_selection,
+ "," => keep_primary_selection,
// "q" => record_macro,
// "Q" => replay_macro,
@@ -554,7 +552,6 @@ impl Default for Keymaps {
"p" => paste_clipboard_after,
"P" => paste_clipboard_before,
"R" => replace_selections_with_clipboard,
- "space" => keep_primary_selection,
"/" => global_search,
},
"z" => { "View"