summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorAlan Pearce2018-03-06 13:34:59 +0100
committerAlan Pearce2018-03-06 13:34:59 +0100
commit64b1ff7265e2fb004ccd8625a0a0079f53439550 (patch)
treebf97d3a8d265adbf9ab9dca59e1e693c52303c27 /emacs
parent65ce8c999a001071ca452e1ccf65f5b4ca8e8062 (diff)
downloaddotfiles-64b1ff7265e2fb004ccd8625a0a0079f53439550.tar.lz
dotfiles-64b1ff7265e2fb004ccd8625a0a0079f53439550.tar.zst
dotfiles-64b1ff7265e2fb004ccd8625a0a0079f53439550.zip
Emacs: fix helpful keybinds
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