Function: cider-log-framework
cider-log-framework is an autoloaded, interactive and byte-compiled
function defined in cider-log.el.
Signature
(cider-log-framework ARG1)
Documentation
Show the Cider log framework menu.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-log.el
;; Log Framework Transient
;;;###autoload (autoload 'cider-log-framework "cider-log" "Show the Cider log framework menu." t)
(transient-define-prefix cider-log-framework (framework)
"Show the Cider log framework menu."
[["Cider Log Framework\n\nActions:"
("a" cider-log-show-frameworks)
("b" cider-log-set-buffer)
("j" cider-log-browse-javadocs)
("s" cider-log-set-framework)
("w" cider-log-browse-website)]]
(interactive (list (cider-log--framework)))
(cider-log--ensure-initialized framework)
(transient-setup 'cider-log-framework))