Questions tagged [fido]

3 questions
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