Gnus horizontal article window layout
The terminology is confusing, especially with me having come from Vim: "horizontal" in this case means a vertical split, because they are stacked horizontally. My previous window layout put the body of the article below the summay, which left a lot of whitespace to the right of my 272-column terminal. So I went from ------------------------- | S | T | |-----------------------| | A | ------------------------- to ------------------------- | S | | |-----------| A | | T | | -------------------------. This also lays out nicely with BBDB: ------------------------- ------------------------- | S | T | | S | A | |-----------------------| => |-----------|-----------| | A | | T | B | |-----------------------| ------------------------- | B | -------------------------org
parent
525542efe7
commit
b71f6bc93b
|
@ -454,11 +454,11 @@ beside the summary, with the article rendered below both.
|
|||
#+BEGIN_SRC emacs-lisp
|
||||
(gnus-add-configuration
|
||||
'(article
|
||||
(vertical 1.0
|
||||
(horizontal 0.25
|
||||
(summary 0.50 point)
|
||||
(tree 1.0))
|
||||
(article 1.0))))
|
||||
(horizontal 1.0
|
||||
(vertical 0.50
|
||||
(summary 1.0 point)
|
||||
(tree 0.25))
|
||||
(article 1.0))))
|
||||
#+END_SRC
|
||||
|
||||
The =tree= mention above refers to the tree buffer:
|
||||
|
|
Loading…
Reference in New Issue