Function: cider-repl-history-quit
cider-repl-history-quit is an interactive and byte-compiled function
defined in cider-repl-history.el.
Signature
(cider-repl-history-quit)
Documentation
Take the action specified by cider-repl-history-quit-action.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl-history.el
(defun cider-repl-history-quit ()
"Take the action specified by `cider-repl-history-quit-action'."
(interactive)
(cider-repl-history-cleanup-on-exit)
(pcase cider-repl-history-quit-action
(`delete-and-restore
(quit-restore-window (selected-window) 'kill))
(`quit-window
(quit-window))
(`kill-and-delete-window
(kill-buffer (current-buffer))
(unless (= (count-windows) 1)
(delete-window)))
(`bury-and-delete-window
(bury-buffer)
(unless (= (count-windows) 1)
(delete-window)))
(_
(funcall cider-repl-history-quit-action))))