Function: cider-tap-mode
cider-tap-mode is an interactive and byte-compiled function defined in
cider-tap.el.
Signature
(cider-tap-mode)
Documentation
Major mode for viewing values sent to tap>.
RET cider-tap-inspect-at-point
c cider-tap-clear
n cider-tap-next
p cider-tap-previous
q quit-window
In addition to any hooks its parent mode special-mode might have
run, this mode runs the hook cider-tap-mode-hook, as the final or
penultimate step during initialization.
Key Bindings
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))