aboutsummaryrefslogtreecommitdiff
path: root/editors/mode-info/files/elisp-info-setup.el
blob: f1c56717c4b15af6f16400757e8be4c8e2d8f520 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
;; Setup for elisp-info.el
(require 'elisp-info)
(eval-after-load "help.el"
  (progn
    (define-key help-map "f" 'elisp-info-describe-function)
    (define-key help-map "d" 'elisp-info-describe-function)
    (define-key help-map "D" 'describe-function)
    (define-key help-map "v" 'elisp-info-describe-variable)
    (define-key help-map "V" 'describe-variable)
    (define-key help-mode-map "i" 'elisp-info-help-to-info)))
(provide 'elisp-info-setup)