Variable: cider-classpath-mode-map

cider-classpath-mode-map is a variable defined in cider-classpath.el.

Value

RET  cider-classpath-operate-on-point
n    next-line
p    previous-line
q    cider-popup-buffer-quit-function(var)/cider-popup-buffer-quit-function(fun)

Documentation

Keymap for cider-classpath-mode.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-classpath.el
(defvar cider-classpath-mode-map
  (let ((map (make-sparse-keymap)))
    (set-keymap-parent map cider-popup-buffer-mode-map)
    (define-key map (kbd "RET") #'cider-classpath-operate-on-point)
    (define-key map "n" #'next-line)
    (define-key map "p" #'previous-line)
    map))