Emacs: Move ehelp
Alan Pearce alan@alanpearce.eu
Sun, 27 May 2018 15:16:04 +0200
1 files changed, 8 insertions(+), 8 deletions(-)
jump to
M emacs/.emacs.d/main.el → emacs/.emacs.d/main.el
@@ -1192,6 +1192,14 @@ ("/" . dired-narrow)))) ;;;; Documentation +;;;;; ehelp + +;; ehelp is a less well-known package that’s part of Emacs and slightly +;; improves the normal help commands, mostly by making quitting them easier. + +(use-package ehelp + :bind-keymap ("C-h" . ehelp-map)) + ;;;;; helpful (use-package helpful @@ -1200,14 +1208,6 @@ :bind (:map ehelp-map ("k" . helpful-key) ("v" . helpful-variable) ("f" . helpful-callable))) - -;;;;; ehelp - -;; ehelp is a less well-known package that’s part of Emacs and slightly -;; improves the normal help commands, mostly by making quitting them easier. - -(use-package ehelp - :bind-keymap ("C-h" . ehelp-map)) ;;;;; discover-my-major