emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master 2fd99e1 3/4: Add function as collection support for ivy-mo


From: Oleh Krehel
Subject: [elpa] master 2fd99e1 3/4: Add function as collection support for ivy-mode
Date: Thu, 16 Apr 2015 15:58:04 +0000

branch: master
commit 2fd99e13ca15b6356c149deb74d6a2e78d0b264a
Author: Oleh Krehel <address@hidden>
Commit: Oleh Krehel <address@hidden>

    Add function as collection support for ivy-mode
    
    * ivy.el (ivy-completing-read): Update.
    Ignore initial input for function collection type.
---
 ivy.el |   14 ++++++++++----
 1 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/ivy.el b/ivy.el
index 38a8ff4..f4e368e 100644
--- a/ivy.el
+++ b/ivy.el
@@ -4,7 +4,7 @@
 
 ;; Author: Oleh Krehel <address@hidden>
 ;; URL: https://github.com/abo-abo/swiper
-;; Version: 0.2.1
+;; Version: 0.2.2
 ;; Package-Requires: ((emacs "24.1"))
 ;; Keywords: matching
 
@@ -233,7 +233,7 @@ UPDATE-FN is called each time the current candidate(s) is 
changed."
 
 (defun ivy-completing-read (prompt collection
                             &optional predicate _require-match initial-input
-                            &rest _ignore)
+                              _history def _inherit-input-method)
   "Read a string in the minibuffer, with completion.
 
 This is an interface that conforms to `completing-read', so that
@@ -245,17 +245,23 @@ PREDICATE limits completion to a subset of COLLECTION.
 
 _REQUIRE-MATCH is ignored for now.
 INITIAL-INPUT is a string that can be inserted into the minibuffer initially.
+_HISTORY is ignored for now.
+DEF is the default value.
+_INHERIT-INPUT-METHOD is ignored for now.
 
 The history, defaults and input-method arguments are ignored for now."
   (cond ((functionp collection)
-         (error "Function as a collection unsupported"))
+         (setq collection (all-completions "" collection))
+         (setq initial-input nil))
         ((hash-table-p collection)
          (error "Hash table as a collection unsupported"))
         ((listp (car collection))
          (setq collection (mapcar #'car collection))))
   (when predicate
     (setq collection (cl-remove-if-not predicate collection)))
-  (ivy-read prompt collection initial-input))
+  (when (listp def)
+    (setq def (car def)))
+  (ivy-read prompt collection initial-input nil def))
 
 ;;;###autoload
 (define-minor-mode ivy-mode



reply via email to

[Prev in Thread] Current Thread [Next in Thread]