Function: erc-track-switch-buffer

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

Signature

(erc-track-switch-buffer ARG)

Documentation

Switch to the next active ERC buffer.

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 (arg)
  "Switch to the next active ERC buffer.
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 arg))