X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/ac09f6b2ea56d7f1d7c46ce4659907ec1fb079bf..b57c57de2831a8098a2d075c0174608fa1bc443b:/ivy.el diff --git a/ivy.el b/ivy.el index e89fbd330..a56562961 100644 --- a/ivy.el +++ b/ivy.el @@ -1199,21 +1199,25 @@ This is useful for recursive `ivy-read'." (setq coll (cons preselect coll)))) (setq ivy--old-re nil) (setq ivy--old-cands nil) + (when (integerp preselect) + (setq ivy--old-re "") + (setq ivy--index preselect)) (when initial-input ;; Needed for anchor to work (setq ivy--old-cands coll) (setq ivy--old-cands (ivy--filter initial-input coll))) (setq ivy--all-candidates coll) - (setq ivy--index (or - (and dynamic-collection - ivy--index) - (and preselect - (ivy--preselect-index - preselect - (if initial-input - ivy--old-cands - coll))) - 0))) + (unless (integerp preselect) + (setq ivy--index (or + (and dynamic-collection + ivy--index) + (and preselect + (ivy--preselect-index + preselect + (if initial-input + ivy--old-cands + coll))) + 0)))) (setq ivy-exit nil) (setq ivy--default (or (thing-at-point 'url)