From 8b2cbb53fd26f91a3d1682acf6c9f15819dac722 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= <blaz@mxxn.io>
Date: Tue, 2 Mar 2021 18:25:47 +0900
Subject: [PATCH] minor: fix hover key

---
 helix-term/src/keymap.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
     );