Function: corfu--compute
corfu--compute is a byte-compiled function defined in corfu.el.
Signature
(corfu--compute INPUT TABLE PRED)
Documentation
Compute state from INPUT, TABLE and PRED.
Source Code
;; Defined in ~/.emacs.d/elpa/corfu-20260813.950/corfu.el
(defun corfu--compute (input table pred)
"Compute state from INPUT, TABLE and PRED."
(pcase-let* ((`(,str . ,pt) input)
(before (substring str 0 pt))
(after (substring str pt))
(corfu--metadata (completion-metadata before table pred))
;; bug#47678: `completion-boundaries' fails for `partial-completion'
;; if the cursor is moved before the slashes of "~//".
;; See also vertico.el which has the same issue.
(bounds (condition-case nil
(completion-boundaries before table pred after)
(t (cons 0 (length after)))))
(field (substring str (car bounds) (+ pt (cdr bounds))))
(completing-file (eq (corfu--metadata-get 'category) 'file))
(`(,all . ,hl) (corfu--filter-completions str table pred pt corfu--metadata))
(base (or (when-let* ((z (last all))) (prog1 (cdr z) (setcdr z nil))) 0))
(corfu--base (substring str 0 base))
(pre nil))
;; Filter the ignored file extensions. We cannot use modified predicate for
;; this filtering, since this breaks the special casing in the
;; `completion-file-name-table' for `file-exists-p' and `file-directory-p'.
(when completing-file (setq all (completion-pcm--filename-try-filter all)))
;; Sort using the `display-sort-function' or the Corfu sort functions, and
;; delete duplicates with respect to `equal-including-properties'. This is
;; a deviation from the Vertico completion UI with more aggressive
;; deduplication, where candidates are compared with `equal'. Corfu
;; preserves candidates which differ in their text properties. Corfu tries
;; to preserve text properties as much as possible, when calling the
;; `:exit-function' to help Capfs with candidate disambiguation. This
;; matters in particular for Lsp backends, which produce duplicates for
;; overloaded methods.
(setq all (funcall (or (corfu--sort-function) #'identity) all)
all (corfu--move-prefix-candidates-to-front field all))
(when (and completing-file (not (string-suffix-p "/" field)))
(setq all (corfu--move-to-front (concat field "/") all)))
(setq all (corfu--delete-dups (corfu--move-to-front field all))
pre (if (or (eq corfu-preselect 'prompt) (not all)
(and completing-file (eq corfu-preselect 'directory)
(= (length corfu--base) (length str))
(test-completion str table pred))
(and (eq corfu-preselect 'valid)
(not (equal field (car all)))
(not (and completing-file (equal (concat field "/") (car all))))
(test-completion str table pred)))
-1 0))
`((corfu--input . ,input)
(corfu--base . ,corfu--base)
(corfu--metadata . ,corfu--metadata)
(corfu--candidates . ,all)
(corfu--total . ,(length all))
(corfu--hilit . ,(or hl #'identity))
(corfu--preselect . ,pre)
(corfu--index . ,(or (and (>= corfu--index 0) (/= corfu--index corfu--preselect)
(seq-position all (nth corfu--index corfu--candidates)))
pre)))))