Variable: cider-repl-pop-to-buffer-on-connect

cider-repl-pop-to-buffer-on-connect is a customizable variable defined in cider-repl.el.

Value

t

Documentation

Controls whether to pop to the REPL buffer on connect.

When set to nil the buffer will only be created, and not displayed. When set to display-only the buffer will be displayed, but it will not become focused. Otherwise the buffer is displayed and focused.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defcustom cider-repl-pop-to-buffer-on-connect t
  "Controls whether to pop to the REPL buffer on connect.

When set to nil the buffer will only be created, and not displayed.  When
set to `display-only' the buffer will be displayed, but it will not become
focused.  Otherwise the buffer is displayed and focused."
  :type '(choice (const :tag "Create the buffer, but don't display it" nil)
                 (const :tag "Create and display the buffer, but don't focus it"
                        display-only)
                 (const :tag "Create, display, and focus the buffer" t)))