Function: erc-track-switch-buffer-other-window

erc-track-switch-buffer-other-window is an interactive and byte-compiled function defined in erc-track.el.gz.

Signature

(erc-track-switch-buffer-other-window ARG)

Documentation

Switch to the next active ERC buffer in another window.

If there are no active ERC buffers, switch back to the last non-ERC buffer visited. The order of buffers is defined by erc-track-switch-direction, and a negative argument will reverse it.

Probably introduced at or before Emacs version 27.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-track.el.gz
(defun erc-track-switch-buffer-other-window (arg)
  "Switch to the next active ERC buffer in another window.
If there are no active ERC buffers, switch back to the last
non-ERC buffer visited.  The order of buffers is defined by
`erc-track-switch-direction', and a negative argument will
reverse it."
  (interactive "p")
  (erc-track--switch-buffer 'switch-to-buffer-other-window arg))