-
-
Notifications
You must be signed in to change notification settings - Fork 339
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] Do not automatically select the first option from the list #3062
Comments
Am I correct in understanding that, at the beginning of any given Ivy completion session, you want none of the potential candidates highlighted? If so, I don't think Ivy currently supports that, though I could be wrong. The closest way to emulate it that I can think of is to set Could you please describe in more details the kind of workflow you imagined? |
@basil-conto In neovim, I use |
Right, AFAIK there's no OOTB way to achieve exactly this behaviour in Ivy. For example, one could use Patches welcome. |
@basil-conto sorry, but is there a way to call (defun custom/ivy-done()
(interactive)
(if (= ivy--index -1)
(ivy-immediate-done)
(ivy-alt-done))) |
I haven't tested this, but some possibilities include:
|
How can I make
ivy
not to select the first option automatically when opened? Now, by default, it selects the first option which can be triggerd byTAB
orRET
key.The text was updated successfully, but these errors were encountered: