aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-04-09 15:21:54 +0000
committerBlaž Hrastnik2021-04-09 15:21:54 +0000
commit392c4a9c02d74974ff3160505aec4e4af370bf81 (patch)
tree93bb0fe792d6b47b29b2ed37d26ab2c77f786f81
parent73f4abbb37e399cdb422fb723827d256142a9df3 (diff)
Keep primary selection as space+space.
-rw-r--r--TODO.md4
-rw-r--r--helix-term/src/commands.rs2
-rw-r--r--helix-term/src/keymap.rs1
3 files changed, 3 insertions, 4 deletions
diff --git a/TODO.md b/TODO.md
index 00855ac9..5755c0f3 100644
--- a/TODO.md
+++ b/TODO.md
@@ -35,10 +35,6 @@
- [] jump to alt buffer
-- [ ] load toml configs, themes, tabsize/identation
-
-- [ ] draw separator line between views
-
- [ ] lsp: signature help
- [x] lsp: hover
- [ ] lsp: document symbols (nested/vec)
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index 98e8b20c..b6ae0138 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -1898,6 +1898,8 @@ pub fn space_mode(cx: &mut Context) {
cx.editor.close(cx.view_id);
}
// ' ' => toggle_alternate_buffer(cx),
+ // TODO: temporary since space mode took it's old key
+ ' ' => keep_primary_selection(cx),
_ => (),
}
}
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs
index e20c8ebf..26b2b5fe 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -220,6 +220,7 @@ pub fn default() -> Keymaps {
shift!('K') => commands::keep_selections,
// TODO: and another method for inverse
+ // TODO: clashes with space mode
key!(' ') => commands::keep_primary_selection,
// key!('q') => commands::record_macro,