From 85abc71bc2aff55ea3955dba51c409d6204b1d40 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Fri, 3 Sep 2021 18:49:29 -0500 Subject: [PATCH] Bind C-h m to which-key-show-major-mode --- init.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init.el b/init.el index cb8d41e..324430c 100644 --- a/init.el +++ b/init.el @@ -1866,6 +1866,8 @@ If used with a numeric prefix argument N, N backticks will be inserted." which-key-idle-delay 1 which-key-idle-secondary-delay 0.5) + (:global "C-h m" #'which-key-show-major-mode) + (which-key-setup-side-window-right-bottom) (which-key-mode +1))