-
|
This problem appears on Emacs 30.2, though. However, I think it is irrelevant. The error is triggered when corfu completion menu has popped up, then input space and another character. In this example, it is I am using the lsp-mode configs in documents: https://github.com/minad/corfu/wiki#advanced-example-configuration-with-orderless My minimal config file to reproduce: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
This is caused by a misconfiguration: (add-hook 'orderless-style-dispatchers #'my/orderless-dispatch-flex-first nil 'local)
|
Beta Was this translation helpful? Give feedback.
This is caused by a misconfiguration:
orderless-style-dispatchersandorderless-matching-stylesare lists of functions but not hooks! Thedefcustomhas:type (repeat function). In contrast, hook variables can have the non-function valuetas part of the list.