branch: master
commit 42302d6a4e6314dad12dceaa97ac2351c495583b
Author: Ryan C. Thompson <[email protected]>
Commit: Ryan C. Thompson <[email protected]>
Add some entries to ivy-completing-read-handlers-alist
These are based on the "enable-old" entries from the ido-ubiquitous
3.x overrides:
https://github.com/DarwinAwardWinner/ido-ubiquitous/blob/3.x/ido-ubiquitous.el#L306-L371
---
ivy.el | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/ivy.el b/ivy.el
index d128a20..5cff3b1 100644
--- a/ivy.el
+++ b/ivy.el
@@ -198,7 +198,16 @@ See
https://github.com/abo-abo/swiper/wiki/ivy-display-function."
(defcustom ivy-completing-read-handlers-alist
'((tmm-menubar . completing-read-default)
- (tmm-shortcut . completing-read-default))
+ (tmm-shortcut . completing-read-default)
+ (bbdb-create . ivy-completing-read-with-empty-string-def)
+ (auto-insert . ivy-completing-read-with-empty-string-def)
+ (Info-on-current-buffer . ivy-completing-read-with-empty-string-def)
+ (Info-follow-reference . ivy-completing-read-with-empty-string-def)
+ (Info-menu . ivy-completing-read-with-empty-string-def)
+ (Info-index . ivy-completing-read-with-empty-string-def)
+ (Info-virtual-index . ivy-completing-read-with-empty-string-def)
+ (info-display-manual . ivy-completing-read-with-empty-string-def)
+ (webjump . ivy-completing-read-with-empty-string-def))
"An alist of handlers to replace `completing-read' in `ivy-mode'."
:type '(alist :key-type function :value-type function))