Closed Dima-369 closed 3 years ago
Seeing how this repository is not maintained anymore, I used Selectrum to achieve the exact same result for me:
(selectrum-completing-read "Test: " '("1" "2" "3"))
+1 for Selectrum :smile: But your example still would use prescient sorting if you have it enabled. To disable sorting for a single completion session you could use:
(minibuffer-with-setup-hook
(lambda ()
(setq-local selectrum-should-sort nil))
(completing-read "Test: " '("1" "2" "3")))
Say I have a call like this:
Is there a easy way to disable prescient for this simple call?