tweak(ivy): use helpful for counsel descbinds

`counsel-describe-symbol-function' still doesn't use `helpful-symbol'
because `helpful-symbol' throws up a prompt when the symbol refers to
both a function and a variable.
This commit is contained in:
Gavin Downard 2022-04-06 11:11:15 -07:00 committed by Henrik Lissner
parent fd991026ff
commit 499cf5e626

View file

@ -228,7 +228,8 @@ results buffer.")
;; Integrate with `helpful' ;; Integrate with `helpful'
(setq counsel-describe-function-function #'helpful-callable (setq counsel-describe-function-function #'helpful-callable
counsel-describe-variable-function #'helpful-variable) counsel-describe-variable-function #'helpful-variable
counsel-descbinds-function #'helpful-callable)
;; Decorate `doom/help-custom-variable' results the same way as ;; Decorate `doom/help-custom-variable' results the same way as
;; `counsel-describe-variable' (adds value and docstring columns). ;; `counsel-describe-variable' (adds value and docstring columns).