[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Window configuration: Include non-gnus buffer
From: |
Jan Tatarik |
Subject: |
Re: Window configuration: Include non-gnus buffer |
Date: |
Wed, 15 Jan 2014 09:38:25 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) |
On Wed, Jan 15 2014, Alexander Baier wrote:
> Hello,
> Is it possible to include a non-gnus buffer (e.g. "*Messages*") in
> `gnus-buffer-configuration'? Something like this:
> #+begin_src emacs-lisp
> '(article (vertical 1.0 (summary 0.25 point)
> ("*Messages*" 1.0)))
> #+end_src
I have something like this in my config:
#+begin_src emacs-lisp
(setq gnus-window-to-buffer
(append (list '(messages . "*Messages*")) gnus-window-to-buffer))
#+end_src
Your example would then become
#+begin_src emacs-lisp
'(article (vertical 1.0 (summary 0.25 point)
(messages 1.0)))
#+end_src