From: Richard Russon Date: Wed, 3 Feb 2016 07:03:13 +0000 (+0000) Subject: add docs X-Git-Tag: neomutt-20160404~10^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c8812b76f2368ee79eed92807a43a42d709f3157;p=neomutt add docs --- diff --git a/README.initials b/README.initials new file mode 100644 index 000000000..5ea984e36 --- /dev/null +++ b/README.initials @@ -0,0 +1,48 @@ +Initials Expando Patch +====================== + + Expando for author's initials + +Patch +----- + + To check if Mutt supports "Initials", look for "patch-initials" in the mutt + version. + + Dependencies + * mutt-1.5.24 + +Introduction +------------ + + The "initials" patch adds an expando (%I) for an author's initials. + + The index panel displays a list of emails. Its layout is controlled by the + $index_format variable. Using this expando saves space in the index panel. + This can be useful if you are regularly working with a small set of people. + +Variables +--------- + + This patch has no config of its own. It adds an expando which can be used + in the $index_format variable. + +See Also +-------- + + * NeoMutt project + * $index_format + * index-color patch + * folder-hook + +Known Bugs +---------- + + None + +Credits +------- + + * Vsevolod Volkov + * Richard Russon + diff --git a/doc/manual.xml.head b/doc/manual.xml.head index b90908f00..31abbecea 100644 --- a/doc/manual.xml.head +++ b/doc/manual.xml.head @@ -8081,6 +8081,132 @@ please have a look at the mixmaster documentation. + + Initials Expando Patch + Expando for author's initials + + + Patch + + + To check if Mutt supports Initials, look for + patch-initials in the mutt version. + See: . + + + + Dependencies: + mutt-1.5.24 + + + This patch is part of the NeoMutt Project. + + + + Introduction + + + The initials patch adds an expando (%I) for an author's + initials. + + + + The index panel displays a list of emails. Its layout is controlled by + the $index_format variable. Using + this expando saves space in the index panel. This can be useful if you + are regularly working with a small set of people. + + + + + Variables + + + This patch has no config of its own. It adds an expando which can be + used in the $index_format variable. + + + + + + + Muttrc + +# Example Mutt config file for the 'initials' patch. + +# The 'initials' patch has no config of its own. +# It adds an expando for an author's initials, +# which can be used in the 'index_format' variable. + +# The default 'index_format' is: +set index_format='%4C %Z %{%b %d} %-15.15L (%?l?%4l&%4c?) %s' + +# Where %L represents the author/recipient + +# This might look like: +# 1 + Nov 17 David Bowie Changesbowie ( 689) +# 2 ! Nov 17 Stevie Nicks Rumours ( 555) +# 3 + Nov 16 Jimi Hendrix Voodoo Child ( 263) +# 4 + Nov 16 Debbie Harry Parallel Lines ( 540) + +# Using the %I expando: +set index_format='%4C %Z %{%b %d} %I (%?l?%4l&%4c?) %s' + +# This might look like: +# 1 + Nov 17 DB Changesbowie ( 689) +# 2 ! Nov 17 SN Rumours ( 555) +# 3 + Nov 16 JH Voodoo Child ( 263) +# 4 + Nov 16 DH Parallel Lines ( 540) + +# vim: syntax=muttrc + + + + + See Also + + + NeoMutt Project + $index_format + index-color patch + folder-hook + + + + + Known Bugs + None + + + + Credits + + Vsevolod Volkov vvv@mutt.org.ua + Richard Russon rich@flatcap.org + + + + diff --git a/doc/muttrc.initials b/doc/muttrc.initials new file mode 100644 index 000000000..644c1b7fd --- /dev/null +++ b/doc/muttrc.initials @@ -0,0 +1,27 @@ +# Example Mutt config file for the 'initials' patch. + +# The 'initials' patch has no config of its own. +# It adds an expando for an author's initials, +# which can be used in the 'index_format' variable. + +# The default 'index_format' is: +set index_format='%4C %Z %{%b %d} %-15.15L (%?l?%4l&%4c?) %s' + +# Where %L represents the author/recipient + +# This might look like: +# 1 + Nov 17 David Bowie Changesbowie ( 689) +# 2 ! Nov 17 Stevie Nicks Rumours ( 555) +# 3 + Nov 16 Jimi Hendrix Voodoo Child ( 263) +# 4 + Nov 16 Debbie Harry Parallel Lines ( 540) + +# Using the %I expando: +set index_format='%4C %Z %{%b %d} %I (%?l?%4l&%4c?) %s' + +# This might look like: +# 1 + Nov 17 DB Changesbowie ( 689) +# 2 ! Nov 17 SN Rumours ( 555) +# 3 + Nov 16 JH Voodoo Child ( 263) +# 4 + Nov 16 DH Parallel Lines ( 540) + +# vim: syntax=muttrc