Add helpful package for better help information

This commit is contained in:
2018-06-23 13:18:50 +01:00
parent 42d260df9b
commit d92cc05770
3 changed files with 24 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
;;; 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)))
(provide 'siren-helpful)
;;; siren-helpful.el ends here