Function: cider-format-edn-buffer
cider-format-edn-buffer is an autoloaded, interactive and
byte-compiled function defined in cider-format.el.
Signature
(cider-format-edn-buffer)
Documentation
Format the EDN data in the current buffer.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-format.el
;;; Format EDN
;;;###autoload
(defun cider-format-edn-buffer ()
"Format the EDN data in the current buffer."
(interactive)
(check-parens)
(cider-ensure-connected)
(cider--format-buffer (lambda (edn)
(cider-sync-request:format-edn edn fill-column))))