dotfiles

🎜 Clone'em, tweak'em, stick'em in your $HOME 🎝
git clone https://git.kevinlegouguec.net/dotfiles
Log | Files | Refs | README

commit d3a52e8c77c588a190714767f5f607ab7270bfec
parent 3de2177a110e987fa04f6792ad7f9b1d198335be
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Tue,  7 Apr 2020 18:23:14 +0200

Add subject to dummy thread roots

Sometimes, when adding dummy roots, Gnus displays the thread subject
on the first message:

(emacs-devel, fetched from archive.lwn.net)
                     β”Œβ—ˆ
    10:31            β”œβ–Ί martin rudalics          Re: emacs rendering comparisson between emacs23 and emacs26.3
    14:07            β”‚β”œβ–Ί Dmitry Gutov
    14:35            β”‚β”‚β”œβ–Ί Dmitry Gutov
    14:45            β”‚β”‚β•°β–Ί martin rudalics
    13:47            β”‚β•°β–Ί Alan Mackenzie
    14:45            ┆ β•°β–Ί martin rudalics

And sometimes it doesn't:

(bug-gnu-emacs, fetched from news.gmane.io)
                     β”Œβ—ˆ
    02:08            β”œβ–Ί Juri Linkov
    05:33            β•°β–Ί Stefan Monnier

Adding %S to the dummy line-format will cause the subject to appear
twice in the first situation (on the dummy root, then on the first
message); not great, but better than not knowing what the topic is.

Diffstat:
M.gnus | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gnus b/.gnus @@ -16,7 +16,7 @@ '((nntp "archive.lwn.net") (nntp "news.gmane.io")) gnus-summary-line-format "%*%U%R %-16,16&user-date; %B%-23,23n %s\n" - gnus-summary-dummy-line-format " ┄┐\n" + gnus-summary-dummy-line-format " β”Œβ—ˆ %S\n" gnus-summary-make-false-root 'dummy gnus-sum-thread-tree-root "β”Œβ—ˆ " gnus-sum-thread-tree-false-root "┄┐ "