Clean up Emacs helpful configuration

This commit is contained in:
Tom Willemse 2023-08-17 09:58:40 -07:00
parent d968a40a27
commit 9679603547

View file

@ -25,14 +25,13 @@
;;; Code: ;;; Code:
(use-package helpful (use-package helpful
:config :bind (([remap describe-callable] . helpful-callable)
(global-set-key [remap describe-callable] #'helpful-callable) ([remap describe-function] . helpful-function)
(global-set-key [remap describe-function] #'helpful-function) ("C-h M" . helpful-macro)
(global-set-key (kbd "C-h M") #'helpful-macro) ([remap describe-command] . helpful-command)
(global-set-key [remap describe-command] #'helpful-command) ([remap describe-key] . helpful-key)
(global-set-key [remap describe-key] #'helpful-key) ([remap describe-variable] . helpful-variable)
(global-set-key [remap describe-variable] #'helpful-variable) ("C-h T" . helpful--at-point)))
(global-set-key (kbd "C-h T") #'helpful-at-point))
(provide 'helpful) (provide 'helpful)
;;; helpful.el ends here ;;; helpful.el ends here