Questions tagged [icomplete]
8 questions
6
votes
1 answer
Icomplete and Ido: Why are both in the codebase?
My question is pretty simple, and that is why Ido and Icomplete are both available in emacs.
I find it very strange that the two modes exist together, seeing that they both do what is essentially the same thing, incremental completion for different…

SpecialBomb
- 163
- 5
1
vote
1 answer
Make fido-mode remember which command I chose
I've been happy to replace smex with fido-mode in emacs 28, as fido-mode generally has much nicer behavior. However, one thing that I miss from smex is that smex would remember which strings correspond to which commands and persist them, so that the…

asmeurer
- 1,552
- 12
- 30
1
vote
0 answers
see virtual/recent buffers when switching with fido
I've switched from ido to fido and I'm missing the feature of being able to open recently closed buffers that ido-mode provided with ido-use-virtual-buffers. I spent a lot of time searching for how to get this and reading all about icomplete and do…

hzuim992
- 11
- 2
1
vote
1 answer
How can I exit completing-read with the current string instead of a completion with fido?
Consider the following code:
(fido-mode 1)
(let ((answer (completing-read "Please enter nothing: " '("Something"))))
(if (string= answer "")
(message "You successfully entered nothing!")
(message "You failed :(")))
How can I ensure…

Zeta
- 1,045
- 9
- 18
1
vote
1 answer
Can icomplete mode be enabled selectively, only for certain commands?
I'd like to use icomplete-mode for certain commands, but not for everything. Is there a way to enable it for just a list of commands I specify?

Tom
- 1,190
- 7
- 16
0
votes
1 answer
Minibuffer completion
I am getting confused about minibuffer completion. I can see icomplete and ivy.
For icomplete, there are two main displays, horizontal display (default icomplete) and vertical display (icomplete-vertical). And a number of styles (basic, substring,…

Dilna
- 1,173
- 3
- 10
0
votes
1 answer
Navigating through completion possibilities with icomplete-vertical
I am enabling icomplete-vertical and having difficulties about how to use it.
With the standard icomplete, I get the list of possible completions in the minibuffer and can navigate between the different completions with C-, and C-.
What is the…

Dilna
- 1,173
- 3
- 10
0
votes
1 answer
Disable `icomplete` with Emacs `find-file`
I have been experimenting with various completion frameworks in Emacs. I am currently using consult together with icomplete. I like the way things are working for me but I would like to disable icomplete for find-file. I prefer the traditional Emacs…

Edman
- 1,167
- 7
- 13