aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-14 21:13:44 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-14 21:13:44 -0400
commita21aa2085e82f32042338cefde92646ed09d72a0 (patch)
tree2a99111133b628b3fee52aab579332214c23db56 /init.el
parentPR #23: Merge `rfc/21/pkms` branch to `stable` branch (diff)
downloadmmosmacs-a21aa2085e82f32042338cefde92646ed09d72a0.tar.gz
mmosmacs-a21aa2085e82f32042338cefde92646ed09d72a0.tar.bz2
mmosmacs-a21aa2085e82f32042338cefde92646ed09d72a0.zip
Use `helpful` for improved Help
Diffstat (limited to 'init.el')
-rw-r--r--init.el16
1 files changed, 16 insertions, 0 deletions
diff --git a/init.el b/init.el
index 0c83c86..ad57f29 100644
--- a/init.el
+++ b/init.el
@@ -709,3 +709,19 @@
709;; --------------------------------- 709;; ---------------------------------
710 710
711(defalias 'yes-or-no-p 'y-or-n-p) 711(defalias 'yes-or-no-p 'y-or-n-p)
712
713
714;; ---------------------------------
715;; Improved Help buffer
716;; --------------------
717;; Helpful provides a more
718;; informative Help buffer.
719;; ---------------------------------
720
721(use-package helpful
722 :straight t
723 :bind (("C-h f" . helpful-callable)
724 ("C-h k" . helpful-key)
725 ("C-h p" . helpful-at-point)
726 ("C-h v" . helpful-variable)
727 ("C-h x" . helpful-command)))