Replies: 1 comment
-
You could configure your CAPF itself to emit |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I'd like to write a capf, and use it with corfu. For this completion source, I don't want the the candidates to be sorted, as it's something about recent command history. But seems like I cannot do something like
(let ((corfu-sort-function nil)) (completion-at-point))
, because corfu does something in thepost-command-hook
. Another approach is to emitdisplay-sort-function
from the source, but it's a bit cumbersome to implement, and also a bit slower, because the collection table function get called several times.I wonder if I missed anything, and there are some options for it. Thanks.
Beta Was this translation helpful? Give feedback.
All reactions