From a21aa2085e82f32042338cefde92646ed09d72a0 Mon Sep 17 00:00:00 2001 From: Mountain Man <43313373+MountainMan1312@users.noreply.github.com> Date: Sun, 14 May 2023 21:13:44 -0400 Subject: Use `helpful` for improved Help --- init.el | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/init.el b/init.el index 0c83c86..ad57f29 100644 --- a/init.el +++ b/init.el @@ -709,3 +709,19 @@ ;; --------------------------------- (defalias 'yes-or-no-p 'y-or-n-p) + + +;; --------------------------------- +;; Improved Help buffer +;; -------------------- +;; Helpful provides a more +;; informative Help buffer. +;; --------------------------------- + +(use-package helpful + :straight t + :bind (("C-h f" . helpful-callable) + ("C-h k" . helpful-key) + ("C-h p" . helpful-at-point) + ("C-h v" . helpful-variable) + ("C-h x" . helpful-command))) -- cgit v1.2.3