branch: externals/corfu commit b278015fd84a0e2d49a343cc33f7451001332d11 Author: Daniel Mendler <m...@daniel-mendler.de> Commit: Daniel Mendler <m...@daniel-mendler.de>
corfu--post-command: Set inhibit-field-text-motion=t --- corfu.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/corfu.el b/corfu.el index ff2f5bc912..2d4d6d8033 100644 --- a/corfu.el +++ b/corfu.el @@ -893,7 +893,8 @@ See `corfu-separator' for more details." (<= beg pt end) (save-excursion (goto-char beg) - (<= (line-beginning-position) pt (line-end-position))) + (let ((inhibit-field-text-motion t)) + (<= (line-beginning-position) pt (line-end-position)))) (or ;; TODO We keep alive Corfu if a `overriding-terminal-local-map' is ;; installed, for example the `universal-argument-map'. It would be good to