Function: cider--check-existing-session
cider--check-existing-session is a byte-compiled function defined in
cider.el.
Signature
(cider--check-existing-session PARAMS)
Documentation
Ask for confirmation if a session with similar PARAMS already exists.
If no session exists or user chose to proceed, return PARAMS. If the user canceled the action, signal quit.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defun cider--check-existing-session (params)
"Ask for confirmation if a session with similar PARAMS already exists.
If no session exists or user chose to proceed, return PARAMS. If the user
canceled the action, signal quit."
(let* ((proj-dir (plist-get params :project-dir))
(host (plist-get params :host))
(port (plist-get params :port))
(session (seq-find (lambda (ses)
(let ((ses-params (cider--gather-session-params ses)))
(and (equal proj-dir (plist-get ses-params :project-dir))
(or (null port)
(equal port (plist-get ses-params :port)))
(or (null host)
(equal host (plist-get ses-params :host))))))
(sesman-current-sessions 'CIDER '(project)))))
(when session
(unless (y-or-n-p
(concat
"A CIDER session with the same connection parameters already exists (" (car session) "). "
"Are you sure you want to create a new session instead of using `cider-connect-sibling-clj(s)'? "))
(let ((debug-on-quit nil))
(signal 'quit nil)))))
params)