Variable: cider-completion-annotations-include-ns

cider-completion-annotations-include-ns is a customizable variable defined in cider-completion.el.

Value

unqualified

Documentation

Controls passing of namespaces to cider-annotate-completion-function.

When set to always, the candidate's namespace will always be passed if it is available. When set to unqualified, the namespace will only be passed if the candidate is not namespace-qualified.

This variable was added, or its default value changed, in cider version 0.9.0.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-completion.el
(defcustom cider-completion-annotations-include-ns 'unqualified
  "Controls passing of namespaces to `cider-annotate-completion-function'.

When set to `always', the candidate's namespace will always be passed if it
is available.  When set to `unqualified', the namespace will only be passed
if the candidate is not namespace-qualified."
  :type '(choice (const always)
                 (const unqualified)
                 (const :tag "never" nil))
  :group 'cider
  :package-version '(cider . "0.9.0"))