Function: cider--mark-loaded
cider--mark-loaded is a byte-compiled function defined in
cider-eval.el.
Signature
(cider--mark-loaded &optional BUFFER)
Documentation
Mark BUFFER's content as loaded into the REPL and in sync.
Refreshes the evaluation fringe indicators across BUFFER and runs
cider-file-loaded-hook (which the namespace load-state indicator hooks
into). BUFFER defaults to the current buffer. Used by the file-loading
flow and by the namespace reloading commands once they finish.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-eval.el
(defun cider--mark-loaded (&optional buffer)
"Mark BUFFER's content as loaded into the REPL and in sync.
Refreshes the evaluation fringe indicators across BUFFER and runs
`cider-file-loaded-hook' (which the namespace load-state indicator hooks
into). BUFFER defaults to the current buffer. Used by the file-loading
flow and by the namespace reloading commands once they finish."
(with-current-buffer (or buffer (current-buffer))
(cider--make-fringe-overlays-for-region (point-min) (point-max))
(run-hooks 'cider-file-loaded-hook)))