dotfiles/emacs/.emacs.d/config/init-help.el

20 lines
544 B
EmacsLisp
Raw Normal View History

2021-02-21 02:59:11 +00:00
;; -*- lexical-binding: t; -*-
;; Emacs has fanstastic built-in help features, but they could be more convenient
(leader-def-key "h" '(:keymap help-map :which-key "help"))
(use-package info
2023-04-27 18:56:06 +00:00
:straight (:type built-in))
(use-package helpful
:general
([remap describe-function] #'helpful-callable)
([remap describe-variable] #'helpful-variable)
([remap describe-key] #'helpful-key)
2023-03-08 16:33:29 +00:00
([remap describe-symbol] #'helpful-symbol)
2021-03-03 14:28:08 +00:00
(normal helpful-mode-map "TAB" #'forward-button
"gr" #'helpful-update))
(provide 'init-help)