Variable: cider-xref--symbol-chars
cider-xref--symbol-chars is a variable defined in
cider-xref-source.el.
Value
"[:alnum:]_'*+!?<>=&$%./:-"
Documentation
The Clojure symbol-constituent characters, as the body of a bracket expression.
Wrap in "[...]" to match one, or "[^...]" to match a boundary. Used to guard
the edges of a match so that, e.g., searching for foo does not match inside
foobar or other/foo.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-xref-source.el
(defconst cider-xref--symbol-chars "[:alnum:]_'*+!?<>=&$%./:-"
"The Clojure symbol-constituent characters, as the body of a bracket expression.
Wrap in \"[...]\" to match one, or \"[^...]\" to match a boundary. Used to guard
the edges of a match so that, e.g., searching for `foo' does not match inside
`foobar' or `other/foo'.")