Display all open rcirc-channel buffers (or query buffers) at once.
(btw… cannot scale inlined images)
Installation
(require 'arrange-buffers)Usage
(arrange-buffers "^#" "rcirc-mode")(arrange-buffers "^[^#&\\*]" "rcirc-mode")Or use key bindings:
; Show all channels (global-set-key (kbd "<f7>") '(lambda () (interactive) (arrange-buffers "^#" "rcirc-mode"))) ; Show all queries (global-set-key (kbd "<f8>") '(lambda () (interactive) (arrange-buffers "^[^#&\\*]" "rcirc-mode")))