mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Remove help-fns+, add helpful plugin #363
This commit is contained in:
@ -215,9 +215,17 @@ extension, try to guess one."
|
||||
(er/contract-region 0)))
|
||||
(advice-add #'evil-escape :before #'doom*quit-expand-region))
|
||||
|
||||
(def-package! help-fns+ ; Improved help commands
|
||||
:commands (describe-buffer describe-command describe-file
|
||||
describe-keymap describe-option describe-option-of-type))
|
||||
(def-package! helpful
|
||||
:commands (helpful-callable helpful-function helpful-macro helpful-command
|
||||
helpful-key helpful-variable helpful-at-point)
|
||||
:init
|
||||
(setq counsel-describe-function-function #'helpful-callable
|
||||
counsel-describe-variable-function #'helpful-variable)
|
||||
|
||||
(global-set-key [remap describe-function] #'helpful-callable)
|
||||
(global-set-key [remap describe-command] #'helpful-command)
|
||||
(global-set-key [remap describe-variable] #'helpful-variable)
|
||||
(global-set-key [remap describe-key] #'helpful-key))
|
||||
|
||||
(def-package! pcre2el
|
||||
:commands rxt-quote-pcre)
|
||||
|
@ -27,7 +27,7 @@
|
||||
(package! command-log-mode)
|
||||
(package! editorconfig)
|
||||
(package! expand-region)
|
||||
(package! help-fns+)
|
||||
(package! helpful)
|
||||
(package! pcre2el)
|
||||
(package! smart-forward)
|
||||
(package! smartparens)
|
||||
|
Reference in New Issue
Block a user