branch: master
commit 6405cb341751222e46d6557828e788982e5c61c3
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>

    ivy.el (ivy-partial-or-done): Always forward to `ivy-alt-done'
    
    Fixes #105
---
 ivy.el |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/ivy.el b/ivy.el
index d620a8c..b071de6 100644
--- a/ivy.el
+++ b/ivy.el
@@ -306,9 +306,7 @@ candidate."
                    (= ivy--length 1))
           (ivy--cd (expand-file-name ivy-text))))
     (or (ivy-partial)
-        (if (eq this-command last-command)
-            (ivy-done)
-          (ivy-alt-done)))))
+        (ivy-alt-done))))
 
 (defun ivy-partial ()
   "Complete the minibuffer text as much as possible."

Reply via email to