Function: consult-buffer-other-window
consult-buffer-other-window is an autoloaded, interactive and
byte-compiled function defined in consult.el.
Signature
(consult-buffer-other-window)
Documentation
Variant of consult-buffer, switching to a buffer in another window.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult.el
;;;###autoload
(defun consult-buffer-other-window ()
"Variant of `consult-buffer', switching to a buffer in another window."
(interactive)
(let ((consult--buffer-display #'switch-to-buffer-other-window))
(consult-buffer)))