Variable: cider-merge-sessions
cider-merge-sessions is a customizable variable defined in
cider-connection.el.
Value
nil
Documentation
Controls session combination behavior.
Symbol host combines all sessions of a project associated with the same host.
Symbol project combines all sessions of a project.
All other values do not combine any sessions.
This variable was added, or its default value changed, in cider version 1.5.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-connection.el
(defcustom cider-merge-sessions nil
"Controls session combination behavior.
Symbol `host' combines all sessions of a project associated with the same host.
Symbol `project' combines all sessions of a project.
All other values do not combine any sessions."
:type '(choice (const :tag "Combine all sessions with the same host" host)
(const :tag "Combine all sessions from the same project" project)
(other :tag "Do not combine any sessions"))
:group 'cider
:safe #'symbolp
:package-version '(cider . "1.5"))