Function: cider-menu

cider-menu is an autoloaded, interactive and byte-compiled function defined in cider-mode.el.

Signature

(cider-menu)

Documentation

Top-level transient menu for CIDER, dispatching to the per-group menus.

This command is not bound to a key by default; invoke it with M-x (execute-extended-command) cider-menu, or bind it yourself, e.g.

    (keymap-set cider-mode-map "C-c m" #'cider-menu)

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-mode.el
;;;###autoload (autoload 'cider-menu "cider-mode" "Top-level transient menu for CIDER." t)
(transient-define-prefix cider-menu ()
  "Top-level transient menu for CIDER, dispatching to the per-group menus.
This command is not bound to a key by default; invoke it with
\\[execute-extended-command] cider-menu, or bind it yourself, e.g.

    (keymap-set cider-mode-map \"C-c m\" #\\='cider-menu)"
  [["Evaluate"
    ("e" "Eval..." cider-eval-menu)
    ("m" "Macroexpand..." cider-macroexpand-menu)
    ("d" "Documentation..." cider-doc-menu)]
   ["Code"
    ("t" "Test..." cider-test-menu)
    ("n" "Namespace..." cider-ns-menu)
    ("w" "References..." cider-references-menu)]
   ["REPL & session"
    ("j" "Insert into REPL..." cider-insert-menu)
    ("x" "Jack-in / connect..." cider-start-menu)]
   ["Diagnostics"
    ("r" "Trace..." cider-trace-menu)
    ("p" "Profile..." cider-profile-menu)
    ("l" "Log..." cider-log)]])