From 94a2bc77ef8fea134f81852368c03623112a5c3e Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 12 Apr 2019 16:07:32 -0400 Subject: [PATCH] Unbind C-h in help-map It interferes with which-key help/paging for the SPC h prefix. --- modules/config/default/config.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/config/default/config.el b/modules/config/default/config.el index bbec88eba..47faefde4 100644 --- a/modules/config/default/config.el +++ b/modules/config/default/config.el @@ -189,6 +189,10 @@ "C-m" #'info-emacs-manual "C-v" #'doom/version + ;; Unbind `help-for-help'. Conflicts with which-key's help command for the + ;; h prefix. It's already on ? and F1 anyway. + "C-h" nil + ;; replacement keybinds ;; replaces `info-emacs-manual' b/c it's on C-m now "r" nil