Variable: nrepl-messages-mode-map
nrepl-messages-mode-map is a variable defined in nrepl-client.el.
Value
<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
Documentation
Keymap for nrepl-messages-mode.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/nrepl-client.el
(defvar nrepl-messages-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "n") #'next-line)
(define-key map (kbd "p") #'previous-line)
(define-key map (kbd "TAB") #'forward-button)
(define-key map (kbd "RET") #'nrepl-log-expand-button)
(define-key map (kbd "e") #'nrepl-log-expand-button)
(define-key map (kbd "E") #'nrepl-log-expand-all-buttons)
(define-key map (kbd "<backtab>") #'backward-button)
map))