From 67ac85068c32be97f4edfa7d6f1cdcb3c991167a Mon Sep 17 00:00:00 2001 From: justbur Date: Tue, 29 Mar 2016 09:04:21 -0400 Subject: [PATCH] counsel.el (counsel-M-x): Add help action --- counsel.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/counsel.el b/counsel.el index 9384262aa..1c43b6e6e 100644 --- a/counsel.el +++ b/counsel.el @@ -478,7 +478,8 @@ Update the minibuffer with the amount of lines collected every ;;** `counsel-M-x' (ivy-set-actions 'counsel-M-x - '(("d" counsel--find-symbol "definition"))) + '(("d" counsel--find-symbol "definition") + ("h" (lambda (x) (describe-function (intern x))) "help"))) (ivy-set-display-transformer 'counsel-M-x -- 2.39.2