branch: externals/vertico
commit 1819c6ad5948417acc459ab2a12ad61ddfc781d5
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>
Revert "Fix oddity for empty candidate strings (See #134)"
This reverts commit 25f1ed19676829d146141afd0ad42ee4efdb3b42.
---
vertico.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/vertico.el b/vertico.el
index 911fc22..4fe876e 100644
--- a/vertico.el
+++ b/vertico.el
@@ -434,7 +434,7 @@ The function is configured by BY, BSIZE, BINDEX, BPRED and
PRED."
vertico--index
(if (or vertico--default-missing
(= 0 vertico--total)
- (and (> (car bounds) 0) (= (car bounds) (length content))
+ (and (= (car bounds) (length content))
(test-completion content minibuffer-completion-table
minibuffer-completion-predicate)))
-1 0))))))