summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/main.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el
index b6fe978..6ecfaff 100644
--- a/emacs/.emacs.d/main.el
+++ b/emacs/.emacs.d/main.el
@@ -1196,9 +1196,11 @@ With two prefix arguments, write out the day and month name."
 ;;;;; helpful
 
 (use-package helpful
-  :bind (("C-h k" . helpful-key)
-         ("C-h v" . helpful-variable)
-         ("C-h f" . helpful-callable)))
+  :after ehelp
+  :bind (:map ehelp-map
+              ("k" . helpful-key)
+              ("v" . helpful-variable)
+              ("f" . helpful-callable)))
 
 ;;;;; ehelp