From 499cf5e626ce261cdda01c58f442c3a00a9c8292 Mon Sep 17 00:00:00 2001 From: Gavin Downard Date: Wed, 6 Apr 2022 11:11:15 -0700 Subject: [PATCH] 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. --- modules/completion/ivy/config.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/completion/ivy/config.el b/modules/completion/ivy/config.el index e56d5fffe..6b73caeb9 100644 --- a/modules/completion/ivy/config.el +++ b/modules/completion/ivy/config.el @@ -228,7 +228,8 @@ results buffer.") ;; Integrate with `helpful' (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 ;; `counsel-describe-variable' (adds value and docstring columns).