diff options
author | Alan Pearce | 2018-05-27 15:16:04 +0200 |
---|---|---|
committer | Alan Pearce | 2018-05-27 15:17:45 +0200 |
commit | 2fdb0124b193698de9736a07db5b6861500fa621 (patch) | |
tree | 43c204d0f61c7ce44a6673974ac92c8d561d053f | |
parent | d0b359989fbd84beba5a0a84af899e6840dff580 (diff) | |
download | nixfiles-2fdb0124b193698de9736a07db5b6861500fa621.tar.lz nixfiles-2fdb0124b193698de9736a07db5b6861500fa621.tar.zst nixfiles-2fdb0124b193698de9736a07db5b6861500fa621.zip |
Emacs: Move ehelp
-rw-r--r-- | emacs/.emacs.d/main.el | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index 73734ab8..302c5dea 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -1192,6 +1192,14 @@ With two prefix arguments, write out the day and month name." ;;;; 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 @@ -1201,14 +1209,6 @@ With two prefix arguments, write out the day and month name." ("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 ;; A nicer way to browse keybindings for major modes. |