Variable: cider-ns-refresh-log-mode-hook

cider-ns-refresh-log-mode-hook is a variable defined in cider-ns.el.

Value

nil

Documentation

Hook run after entering Refresh Log mode.

No problems result if this variable is not bound. add-hook automatically binds it. (This is true for all hook variables.)

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-ns.el
(define-derived-mode cider-ns-refresh-log-mode special-mode "Refresh Log"
  "Major mode for the `*cider-ns-refresh-log*' buffer.

\\{cider-ns-refresh-log-mode-map}"
  ;; the buffer is populated asynchronously; don't ask to confirm a revert
  (setq-local revert-buffer-function (lambda (&rest _) (cider-ns-refresh))))