Function: cider-ns-menu--refresh
cider-ns-menu--refresh is an interactive and byte-compiled function
defined in cider-mode.el.
Signature
(cider-ns-menu--refresh ARG1)
Documentation
Refresh namespaces, applying the menu's refresh ARGS.
--all, --clear and --inhibit-fns map to the corresponding
cider-ns-refresh modes; with none set it does a smart reload.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-mode.el
;;;###autoload (autoload 'cider-ns-menu "cider-mode" "Menu for CIDER's namespace commands." t)
(transient-define-suffix cider-ns-menu--refresh (args)
"Refresh namespaces, applying the menu's refresh ARGS.
`--all', `--clear' and `--inhibit-fns' map to the corresponding
`cider-ns-refresh' modes; with none set it does a smart reload."
(interactive (list (transient-args 'cider-ns-menu)))
(cider-ns-refresh
(delq nil (list (and (member "--all" args) 'refresh-all)
(and (member "--clear" args) 'clear)
(and (member "--inhibit-fns" args) 'inhibit-fns)))))