diff options
-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))) | ||