aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/keymap.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2020-12-23 07:20:49 +0000
committerBlaž Hrastnik2020-12-23 07:20:49 +0000
commit56f2193811fca2fa20284442c2042fa271464445 (patch)
tree1ec99141a70b484f1fbcf0594e5aea61138cd097 /helix-term/src/keymap.rs
parent955cb81687db139422875d02b534d753dac5603f (diff)
Retrieve completion options on ctrl-x.
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r--helix-term/src/keymap.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs
index c1677847..132c81d0 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -208,6 +208,8 @@ pub fn default() -> Keymaps {
code: KeyCode::Tab,
modifiers: Modifiers::NONE
}] => commands::insert::insert_tab,
+
+ vec![ctrl!('x')] => commands::completion,
),
Mode::Goto => hashmap!(
vec![Key {