Variable: cider-xref--ws

cider-xref--ws is a variable defined in cider-xref-source.el.

Value

"[      
\n\f]"

Documentation

A bracket expression matching one whitespace character, newlines included.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-xref-source.el
;; A whitespace class spelled out explicitly: `[:space:]' keys off the syntax
;; table, and in `clojure-mode' a newline is comment-ending rather than
;; whitespace syntax, so `[[:space:]]' wouldn't match it in a buffer scan.
(defconst cider-xref--ws "[ \t\r\n\f]"
  "A bracket expression matching one whitespace character, newlines included.")