summaryrefslogtreecommitdiff
path: root/emacs/inits/05-helpful.el
blob: f8ac203db78b64ab2cb95b5e5179a95ef836a6ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;; Time-stamp: <2019-01-26 12:49:57 (tslil@winslow)>

(use-package helpful
  :ensure t
  :bind (("C-h f" . helpful-callable)
         ("C-h v" . helpful-variable)
         ("C-h k" . helpful-key)
         ("C-h F" . helpful-function)
         ("C-c h" . heplful-at-point))
  :config
  (advice-add #'describe-key :override #'helpful-key)
  (advice-add #'describe-function :override #'helpful-callable)
  (advice-add #'describe-variable :override #'helpful-variable)
  (advice-add #'describe-symbol :override #'helpful-symbol))

(use-package apropos
  :config (setq apropos-do-all t))