Function: cider--maybe-get-state-for-figwheel-main

cider--maybe-get-state-for-figwheel-main is a byte-compiled function defined in cider-repl.el.

Signature

(cider--maybe-get-state-for-figwheel-main BUFFER OUT)

Documentation

Refresh the changed namespaces metadata given BUFFER and OUT (stdout string).

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider--maybe-get-state-for-figwheel-main (buffer out)
  "Refresh the changed namespaces metadata given BUFFER and OUT (stdout string)."
  (with-current-buffer buffer
    (when (and (eq cider-repl-type 'cljs)
               (eq cider-cljs-repl-type 'figwheel-main)
               (not cider-repl-cljs-upgrade-pending)
               (string-match-p "Successfully compiled build" out))
      (cider--maybe-get-state-cljs))))