Variable: cider-trace-mode-hook

cider-trace-mode-hook is a variable defined in cider-tracing.el.

Value

nil

Documentation

Hook run after entering cider-trace-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-tracing.el
(define-derived-mode cider-trace-mode special-mode "cider-trace"
  "Major mode for viewing streamed trace events.

\\{cider-trace-mode-map}"
  (setq-local truncate-lines nil)
  (setq-local header-line-format
              (propertize
               " n/p: move   TAB: fold   .: source   F/U: fold/unfold all   c: clear   q: quit"
               'face 'shadow))
  (add-hook 'kill-buffer-hook #'cider-trace--unsubscribe nil 'local))