summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorAlan Pearce2018-05-27 15:16:04 +0200
committerAlan Pearce2018-05-27 15:17:45 +0200
commit2fdb0124b193698de9736a07db5b6861500fa621 (patch)
tree43c204d0f61c7ce44a6673974ac92c8d561d053f /emacs
parentd0b359989fbd84beba5a0a84af899e6840dff580 (diff)
downloaddotfiles-2fdb0124b193698de9736a07db5b6861500fa621.tar.lz
dotfiles-2fdb0124b193698de9736a07db5b6861500fa621.tar.zst
dotfiles-2fdb0124b193698de9736a07db5b6861500fa621.zip
Emacs: Move ehelp
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/main.el16
1 files changed, 8 insertions, 8 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el
index 73734ab..302c5de 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.