branch: master
commit dcf0f6407627a29c34df6b7b367e78a844432e20
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>
Add "^" as initial input to "C-h f" and "C-h v"
* ivy.el (ivy-initial-inputs-alist): Add entries for
`counsel-describe-function' and `counsel-describe-variable'.
---
ivy.el | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/ivy.el b/ivy.el
index 377fed3..615b476 100644
--- a/ivy.el
+++ b/ivy.el
@@ -665,6 +665,8 @@ like.")
(defvar ivy-initial-inputs-alist
'((org-refile . "^")
(counsel-M-x . "^")
+ (counsel-describe-function . "^")
+ (counsel-describe-variable . "^")
(man . "^")
(woman . "^"))
"Command to initial input table.")