diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-14 21:13:44 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-14 21:13:44 -0400 |
commit | a21aa2085e82f32042338cefde92646ed09d72a0 (patch) | |
tree | 2a99111133b628b3fee52aab579332214c23db56 /init.el | |
parent | PR #23: Merge `rfc/21/pkms` branch to `stable` branch (diff) | |
download | mmosmacs-a21aa2085e82f32042338cefde92646ed09d72a0.tar.gz mmosmacs-a21aa2085e82f32042338cefde92646ed09d72a0.tar.bz2 mmosmacs-a21aa2085e82f32042338cefde92646ed09d72a0.zip |
Use `helpful` for improved Help
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -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))) | ||