From 64b1ff7265e2fb004ccd8625a0a0079f53439550 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Tue, 6 Mar 2018 13:34:59 +0100 Subject: Emacs: fix helpful keybinds --- emacs/.emacs.d/main.el | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index b6fe9781..6ecfaffb 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 -- cgit 1.4.1