An open API service indexing awesome lists of open source software.

https://github.com/berquerant/emacs-message-routing

Route messages to buffer
https://github.com/berquerant/emacs-message-routing

emacs

Last synced: about 1 year ago
JSON representation

Route messages to buffer

Awesome Lists containing this project

README

          

# message-routing

Route messages to buffer.

# Usage

``` emacs-lisp
(setq message-routing-routes '(("^tmp" . "*Tmp*") ("^tmp-a" . "*TmpA*")))
(message-routing-setup)
(message "tmp-a:hello") ; insert into *Tmp* and *TmpA* buffers
(message "tmp:hello") ; insert into *Tmp* buffer
(message "hello") ; insert into *Messages* buffer
```