diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2024-01-22 08:42:42 +0100 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2024-01-22 08:42:42 +0100 |
| commit | 176f9ae83a4f815571a9131d6fd29a134503edfe (patch) | |
| tree | 34277c814b2555e970ff6ab8470e20a7e8a31b31 | |
| parent | 4c9f76c8bb932e3d27b5fb9eda09d334a70cbfb2 (diff) | |
Fix corfu-move-to-minibuffer (Fix #416)
| -rw-r--r-- | README.org | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -459,10 +459,9 @@ Sometimes it is useful to transfer the Corfu completion session to the minibuffer, since the minibuffer offers richer interaction features. In particular, [[https://github.com/oantolin/embark][Embark]] is available in the minibuffer, such that you can act on the candidates or export/collect the candidates to a separate buffer. We could add -Corfu support to Embark in the future, such that export/collect is possible -directly from Corfu. But in my opinion having the ability to transfer the Corfu -completion to the minibuffer is an even better feature, since further completion -can be performed there. +Corfu support to Embark in the future, such that export or collect is possible +directly from Corfu. Nevertheless, the ability to transfer the Corfu completion +to the minibuffer is even more powerful, since further completion is possible. The command ~corfu-move-to-minibuffer~ is defined here in terms of ~consult-completion-in-region~, which uses the minibuffer completion UI via @@ -472,7 +471,7 @@ The command ~corfu-move-to-minibuffer~ is defined here in terms of (defun corfu-move-to-minibuffer () (interactive) (pcase completion-in-region--data - (`(,beg ,end ,table ,pred . ,extras) + (`(,beg ,end ,table ,pred ,extras) (let ((completion-extra-properties extras) completion-cycle-threshold completion-cycling) (consult-completion-in-region beg end table pred))))) |
