Gnus development mailing list
 help / color / mirror / Atom feed
* Gnus summary line and unicode glyphs for thread tree
@ 2020-11-23  5:26 Pankaj Jangid
  2020-11-23 11:56 ` 황병희
  2020-11-23 12:03 ` 황병희
  0 siblings, 2 replies; 5+ messages in thread
From: Pankaj Jangid @ 2020-11-23  5:26 UTC (permalink / raw)
  To: Gnus Users

My summary line with unicode-glyphs for thread tree looks like this,

(custom-set-variables
 '(gnus-summary-line-format "%U%R%z %[%-18,18&user-date;│%4L:%-25,25f%] %B%s\n"))

(custom-set-variables			; thread tree
 '(gnus-sum-thread-tree-root nil)
 '(gnus-sum-thread-tree-false-root nil)
 '(gnus-sum-thread-tree-single-indent "")
 '(gnus-sum-thread-tree-vertical "│")
 '(gnus-sum-thread-tree-indent " ")
 '(gnus-sum-thread-tree-leaf-with-other "├─→")
 '(gnus-sum-thread-tree-single-leaf "╰─→"))

It is stunning.

I want to see how my other friends have done it. Please do share.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Gnus summary line and unicode glyphs for thread tree
  2020-11-23  5:26 Gnus summary line and unicode glyphs for thread tree Pankaj Jangid
@ 2020-11-23 11:56 ` 황병희
  2020-11-23 12:03 ` 황병희
  1 sibling, 0 replies; 5+ messages in thread
From: 황병희 @ 2020-11-23 11:56 UTC (permalink / raw)
  To: ding

Hellow Pankaj,

Pankaj Jangid <pankaj@codeisgreat.org> writes:

> My summary line with unicode-glyphs for thread tree looks like this,
>
> (custom-set-variables
>  '(gnus-summary-line-format "%U%R%z %[%-18,18&user-date;│%4L:%-25,25f%] %B%s\n"))
>
> (custom-set-variables			; thread tree
>  '(gnus-sum-thread-tree-root nil)
>  '(gnus-sum-thread-tree-false-root nil)
>  '(gnus-sum-thread-tree-single-indent "")
>  '(gnus-sum-thread-tree-vertical "│")
>  '(gnus-sum-thread-tree-indent " ")
>  '(gnus-sum-thread-tree-leaf-with-other "├─→")
>  '(gnus-sum-thread-tree-single-leaf "╰─→"))
>
> It is stunning.
>
> I want to see how my other friends have done it. Please do share.

I just use all default values. 

via [C-h v]: 
gnus-summary-line-format’s value is
"%U%R%z%I%(%[%4L: %-23,23f%]%) %s
"

Sincerely, Gnus fan Byung-Hee

-- 
^고맙습니다 _布德天下_ 감사합니다_^))//



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Gnus summary line and unicode glyphs for thread tree
  2020-11-23  5:26 Gnus summary line and unicode glyphs for thread tree Pankaj Jangid
  2020-11-23 11:56 ` 황병희
@ 2020-11-23 12:03 ` 황병희
  1 sibling, 0 replies; 5+ messages in thread
From: 황병희 @ 2020-11-23 12:03 UTC (permalink / raw)
  To: ding

Hellow Pankaj,

Pankaj Jangid <pankaj@codeisgreat.org> writes:

> My summary line with unicode-glyphs for thread tree looks like this,
>
> (custom-set-variables
>  '(gnus-summary-line-format "%U%R%z %[%-18,18&user-date;│%4L:%-25,25f%] %B%s\n"))
>
> (custom-set-variables			; thread tree
>  '(gnus-sum-thread-tree-root nil)
>  '(gnus-sum-thread-tree-false-root nil)
>  '(gnus-sum-thread-tree-single-indent "")
>  '(gnus-sum-thread-tree-vertical "│")
>  '(gnus-sum-thread-tree-indent " ")
>  '(gnus-sum-thread-tree-leaf-with-other "├─→")
>  '(gnus-sum-thread-tree-single-leaf "╰─→"))
>
> It is stunning.
>
> I want to see how my other friends have done it. Please do share.

I just use all default values. via [C-h v]:
gnus-summary-line-format’s value is
"%U%R%z%I%(%[%4L: %-23,23f%]%) %s
"

Sincerely, Gnus fan Byung-Hee

-- 
^고맙습니다 _布德天下_ 감사합니다_^))//



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Gnus summary line and unicode glyphs for thread tree
  2020-11-24  7:52 陈志伟
@ 2020-11-24 10:23 ` Pankaj Jangid
  0 siblings, 0 replies; 5+ messages in thread
From: Pankaj Jangid @ 2020-11-24 10:23 UTC (permalink / raw)
  To: 陈志伟; +Cc: ding

陈志伟 <chenzhiwei03@kuaishou.com> writes:

> (gnus-sum-thread-tree-root            "┌ ")
> (gnus-sum-thread-tree-false-root      "◌ ")
> (gnus-sum-thread-tree-single-indent   "◎ ")
> (gnus-sum-thread-tree-vertical        "│")
> (gnus-sum-thread-tree-indent          "  ")
> (gnus-sum-thread-tree-leaf-with-other "├─►")
> (gnus-sum-thread-tree-single-leaf     "╰─►")
> (gnus-summary-line-format "%U%R %3d %[%-23,23f%] %B %s\n”)

Thanks for sharing. This looks great. I improved mine after looking
your settings.

(custom-set-variables			; thread tree
 '(gnus-sum-thread-tree-root            "● ")
 '(gnus-sum-thread-tree-false-root      "○ ")
 '(gnus-sum-thread-tree-single-indent   "")
 '(gnus-sum-thread-tree-vertical        "│ ")
 '(gnus-sum-thread-tree-indent          "  ")
 '(gnus-sum-thread-tree-leaf-with-other "├─▶ ")
 '(gnus-sum-thread-tree-single-leaf     "╰─▶ "))



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Gnus summary line and unicode glyphs for thread tree
@ 2020-11-24  7:52 陈志伟
  2020-11-24 10:23 ` Pankaj Jangid
  0 siblings, 1 reply; 5+ messages in thread
From: 陈志伟 @ 2020-11-24  7:52 UTC (permalink / raw)
  To: pankaj; +Cc: ding


[-- Attachment #1.1: Type: text/plain, Size: 588 bytes --]

Mine :-)

(gnus-sum-thread-tree-root            "┌ ")
(gnus-sum-thread-tree-false-root      "◌ ")
(gnus-sum-thread-tree-single-indent   "◎ ")
(gnus-sum-thread-tree-vertical        "│")
(gnus-sum-thread-tree-indent          "  ")
(gnus-sum-thread-tree-leaf-with-other "├─►")
(gnus-sum-thread-tree-single-leaf     "╰─►")
(gnus-summary-line-format "%U%R %3d %[%-23,23f%] %B %s\n”)

[cid:188C0ABC-240F-4ED4-A5F6-E3C7DDF98436]

See https://github.com/condy0919/.emacs.d/blob/master/lisp/init-mail.el#L113-L121 for more gnus settings.

--
Zhiwei Chen



[-- Attachment #1.2: Type: text/html, Size: 2348 bytes --]

[-- Attachment #2: PastedGraphic-1.png --]
[-- Type: image/png, Size: 136991 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-11-30 16:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-23  5:26 Gnus summary line and unicode glyphs for thread tree Pankaj Jangid
2020-11-23 11:56 ` 황병희
2020-11-23 12:03 ` 황병희
2020-11-24  7:52 陈志伟
2020-11-24 10:23 ` Pankaj Jangid

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).