Variable: cider-tap-mode-hook

cider-tap-mode-hook is a variable defined in cider-tap.el.

Value

nil

Documentation

Hook run after entering cider-tap-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-tap.el
(define-derived-mode cider-tap-mode special-mode "cider-tap"
  "Major mode for viewing values sent to `tap>'.

\\{cider-tap-mode-map}"
  (setq-local truncate-lines nil)
  (setq-local header-line-format
              (propertize
               " RET: inspect   n/p: move   c: clear   q: quit"
               'face 'shadow))
  (add-hook 'kill-buffer-hook #'cider-tap--unsubscribe nil 'local))