Function: nrepl-messages-mode

nrepl-messages-mode is an interactive and byte-compiled function defined in nrepl-client.el.

Signature

(nrepl-messages-mode)

Documentation

Major mode for displaying nREPL messages.

<backtab> backward-button
E nrepl-log-expand-all-buttons
RET nrepl-log-expand-button
TAB forward-button
e nrepl-log-expand-button
n next-line
p previous-line

In addition to any hooks its parent mode special-mode might have run, this mode runs the hook nrepl-messages-mode-hook, as the final or penultimate step during initialization.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/nrepl-client.el
(define-derived-mode nrepl-messages-mode special-mode "nREPL Messages"
  "Major mode for displaying nREPL messages.

\\{nrepl-messages-mode-map}"
  (when cider-special-mode-truncate-lines
    (setq-local truncate-lines t))
  (setq-local sesman-system 'CIDER)
  (setq-local electric-indent-chars nil)
  (setq-local comment-start ";")
  (setq-local comment-end "")
  (setq-local paragraph-start "(-->\\|(<--")
  (setq-local paragraph-separate "(<--"))