Files
.emacs.d/modules/help/siren-helpful.el
Jim Myhrberg c69dec37bc fix(navigation): Improve helm-apropos usage
- Assign `helm-apropos` to `<helm-prefix> d` instead of the default
  `<helm-prefix> a`, as that is now taken up by `helm-do-ag`.
- Use the `helpful` package to describe functions and variables.
2020-05-10 21:26:12 +01:00

25 lines
558 B
EmacsLisp

;;; siren-helpful.el --- jimeh's Emacs Siren: helpful configuration.
;;; Commentary:
;; Basic configuration for helpful.
;;; Code:
(use-package helpful
:bind
("C-h k" . helpful-key)
("C-h f" . helpful-callable)
("C-h v" . helpful-variable)
("C-h C" . helpful-command)
("C-h F" . helpful-function)
(:map emacs-lisp-mode-map
("C-c C-d" . helpful-at-point))
:custom
(helm-describe-function-function 'helpful-function)
(helm-describe-variable-function 'helpful-variable))
(provide 'siren-helpful)
;;; siren-helpful.el ends here