Function: cider--preceding-form-bounds
cider--preceding-form-bounds is a byte-compiled function defined in
cider-util.el.
Signature
(cider--preceding-form-bounds)
Documentation
Return the bounds (START . END) of the logical sexp preceding point.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-util.el
(defun cider--preceding-form-bounds ()
"Return the bounds (START . END) of the logical sexp preceding point."
(save-excursion
(clojure-backward-logical-sexp 1)
(cons (point)
(progn (clojure-forward-logical-sexp 1)
(point)))))