Variable: cider-xref--symbol-chars-no-slash
cider-xref--symbol-chars-no-slash is a variable defined in
cider-xref-source.el.
Value
"[:alnum:]_'*+!?<>=&$%.:-"
Documentation
Like cider-xref--symbol-chars but without the / namespace separator.
Used only for the left edge of the candidate-narrowing search: a reference
like alias/foo or some.ns/foo has a / right before the bare name, so
treating / as a boundary (rather than a symbol constituent) is what lets a
qualified reference still mark its file as a candidate for the precise scan.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-xref-source.el
(defconst cider-xref--symbol-chars-no-slash
(replace-regexp-in-string "/" "" cider-xref--symbol-chars)
"Like `cider-xref--symbol-chars' but without the `/' namespace separator.
Used only for the left edge of the candidate-narrowing search: a reference
like `alias/foo' or `some.ns/foo' has a `/' right before the bare name, so
treating `/' as a boundary (rather than a symbol constituent) is what lets a
qualified reference still mark its file as a candidate for the precise scan.")