Function: cider-completion-flush-caches

cider-completion-flush-caches is an interactive and byte-compiled function defined in cider-completion.el.

Signature

(cider-completion-flush-caches)

Documentation

Force Compliment to refill its caches.

This command should be used if Compliment fails to pick up new classnames and methods from dependencies that were loaded dynamically after the REPL has started.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-completion.el
(defun cider-completion-flush-caches ()
  "Force Compliment to refill its caches.
This command should be used if Compliment fails to pick up new classnames
and methods from dependencies that were loaded dynamically after the REPL
has started."
  (interactive)
  (cider-sync-request:complete-flush-caches))