From b71f6bc93b2b140165d4033369c24fbbc60ea7f7 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Sat, 7 Nov 2015 23:27:55 -0500 Subject: [PATCH] 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 | ------------------------- --- emacs.d/mail.org | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/emacs.d/mail.org b/emacs.d/mail.org index 4614d11..9788049 100644 --- a/emacs.d/mail.org +++ b/emacs.d/mail.org @@ -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: