Variable: cider-ns-save-files-on-refresh
cider-ns-save-files-on-refresh is a customizable variable defined in
cider-ns.el.
Value
prompt
Documentation
Controls whether to prompt to save files before refreshing.
If nil, files are not saved.
If prompt, the user is prompted to save files if they have been modified.
If t, save the files without confirmation.
This variable was added, or its default value changed, in cider version 0.15.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-ns.el
(defcustom cider-ns-save-files-on-refresh 'prompt
"Controls whether to prompt to save files before refreshing.
If nil, files are not saved.
If `prompt', the user is prompted to save files if they have been modified.
If t, save the files without confirmation."
:type '(choice (const :tag "Prompt to save files if they have been modified" prompt)
(const :tag "Don't save the files" nil)
(const :tag "Save the files without confirmation" t))
:group 'cider
:package-version '(cider . "0.15.0"))