Function: cider--treesit-symbol-regexp

cider--treesit-symbol-regexp is a byte-compiled function defined in cider-mode.el.

Signature

(cider--treesit-symbol-regexp NAMES)

Documentation

Return a regexp matching any of NAMES as a whole symbol name.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-mode.el
(defun cider--treesit-symbol-regexp (names)
  "Return a regexp matching any of NAMES as a whole symbol name."
  (concat "\\`" (regexp-opt names) "\\'"))