Function: cider-form-string

cider-form-string is a byte-compiled function defined in cider-util.el.

Signature

(cider-form-string &optional MIN)

Documentation

Return the text of the form point targets, per cider-form-bounds.

MIN is passed to cider-form-bounds.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-util.el
(defun cider-form-string (&optional min)
  "Return the text of the form point targets, per `cider-form-bounds'.
MIN is passed to `cider-form-bounds'."
  (apply #'buffer-substring-no-properties (cider-form-bounds min)))