-
Beta Was this translation helpful? Give feedback.
Answered by
minad
Aug 9, 2024
Replies: 1 comment
-
No, consult-line-multi doesn't use the completion style. It uses its own regexp compiler, which you could in principle replace with Orderless as described in the wiki. Note that even then negation will not work, since Orderless compiles negation to a predicate function by default (see |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
minad
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No, consult-line-multi doesn't use the completion style. It uses its own regexp compiler, which you could in principle replace with Orderless as described in the wiki. Note that even then negation will not work, since Orderless compiles negation to a predicate function by default (see
orderless-not
). But you can configure Orderless to use the less efficientorderless-without-literal
instead for negation. All of this is a bit of a rabbit hole, I must admit.