Variable: clojure--let-regexp
clojure--let-regexp is a variable defined in clojure-mode.el.
Value
"(\\(when-let\\|if-let\\|let\\)\\(\\s-*\\|\\[\\)"
Documentation
Regexp matching let like expressions, i.e. "let", "when-let", "if-let".
The first match-group is the let expression.
The second match-group is the whitespace or the opening square bracket if no whitespace between the let expression and the bracket.
Source Code
;; Defined in ~/.emacs.d/elpa/clojure-mode-20260325.811/clojure-mode.el
(defvar clojure--let-regexp
"\(\\(when-let\\|if-let\\|let\\)\\(\\s-*\\|\\[\\)"
"Regexp matching let like expressions, i.e. \"let\", \"when-let\", \"if-let\".
The first match-group is the let expression.
The second match-group is the whitespace or the opening square
bracket if no whitespace between the let expression and the
bracket.")