Unnamed repository; edit this file 'description' to name the repository.
minor: fix hover key
Blaž Hrastnik 2021-03-02
parent bd0f6c1 · commit 8b2cbb5
-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 395ddd9a..3be92fcc 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -242,7 +242,7 @@ pub fn default() -> Keymaps {
// move under <space>c
ctrl!('c') => commands::toggle_comments,
- ctrl!('K') => commands::hover,
+ shift!('K') => commands::hover,
// z family for save/restore/combine from/to sels from register
);