Variable: erc-track-switch-direction

erc-track-switch-direction is a customizable variable defined in erc-track.el.gz.

Value

oldest

Documentation

Direction erc-track-switch-buffer should switch.

  importance - find buffer with the most important message
  oldest - find oldest active buffer
  newest - find newest active buffer
  leastactive - find buffer with least unseen messages
  mostactive - find buffer with most unseen messages.

If set to importance, the importance is determined by position in erc-track-faces-priority-list, where first is most important.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-track.el.gz
(defcustom erc-track-switch-direction 'oldest
  "Direction `erc-track-switch-buffer' should switch.

  importance  -  find buffer with the most important message
  oldest      -  find oldest active buffer
  newest      -  find newest active buffer
  leastactive -  find buffer with least unseen messages
  mostactive  -  find buffer with most unseen messages.

If set to `importance', the importance is determined by position
in `erc-track-faces-priority-list', where first is most
important."
  :type '(choice (const importance)
		 (const oldest)
		 (const newest)
		 (const leastactive)
		 (const mostactive)))