Variable: cider-filtered-namespaces-regexps

cider-filtered-namespaces-regexps is a customizable variable defined in cider-client.el.

Value

("^cider.nrepl" "^refactor-nrepl" "^nrepl")

Documentation

List of regexps used to filter out some vars/symbols/namespaces.

When nil, nothing is filtered out. Otherwise, all namespaces matching any regexp from this list are dropped out of the "ns-list" op. Also,
"apropos" won't include vars from such namespaces. This list is passed
on to the nREPL middleware without any pre-processing. So the regexps have to be in Clojure format (with twice the number of backslashes) and not Emacs Lisp.

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-client.el
;;; Sync Requests

(defcustom cider-filtered-namespaces-regexps
  '("^cider.nrepl" "^refactor-nrepl" "^nrepl")
  "List of regexps used to filter out some vars/symbols/namespaces.
When nil, nothing is filtered out.  Otherwise, all namespaces matching any
regexp from this list are dropped out of the \"ns-list\" op.  Also,
\"apropos\" won't include vars from such namespaces.  This list is passed
on to the nREPL middleware without any pre-processing.  So the regexps have
to be in Clojure format (with twice the number of backslashes) and not
Emacs Lisp."
  :type '(repeat string)
  :safe #'listp
  :group 'cider
  :package-version '(cider . "0.13.0"))