summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
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.