From: Rocco Rutte Date: Mon, 21 Jul 2008 09:53:42 +0000 (+0200) Subject: Use itemized lists for listing possible sort config settings. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=61074d7d3699743e03f4384bcf13ad79fb6ce3f0;p=mutt Use itemized lists for listing possible sort config settings. --- diff --git a/ChangeLog b/ChangeLog index 5e38659c..abbf3de1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,31 @@ +2008-07-21 11:42 +0200 Rocco Rutte (7e6d98886cce) + + * doc/makedoc.c: makedoc: Add ".ie" and ".il" to support itemized + lists. + + Some settings docs use verbatim screen environments to print lists + while support for real lists will make it look nicer: for docbook + use , \(hy for roff and '-' for text. + +2008-07-21 11:41 +0200 Rocco Rutte (e09af06a5312) + + * doc/manual.xml.head: Document that account-hook is intended for + connection-related settings only + +2008-07-21 11:40 +0200 Rocco Rutte (089c83504474) + + * doc/manual.xml.head: Manual: Use tables for message flags as it's + more compact + +2008-07-21 11:40 +0200 Rocco Rutte (7bdd9439304e) + + * doc/manual.xml.head: Manual: minor formatting tweaks + +2008-07-21 09:11 +0200 Rocco Rutte (f93dcd689032) + + * ChangeLog, alias.c, init.h: Encode lines written to $alias_file in + $config_charset if set. Closes #3095 + 2008-07-10 09:38 -0400 Aron Griffis (7729b1ad530c) * copy.c, protos.h, sendlib.c: Unify mutt_write_references diff --git a/init.h b/init.h index 8d4a706d..8a29e6e8 100644 --- a/init.h +++ b/init.h @@ -2681,18 +2681,18 @@ struct option_t MuttVars[] = { ** Specifies how to sort messages in the \fIindex\fP menu. Valid values ** are: ** .pp - ** .ts - ** . date or date-sent - ** . date-received - ** . from - ** . mailbox-order (unsorted) - ** . score - ** . size - ** . spam - ** . subject - ** . threads - ** . to - ** .te + ** .il + ** .dd date or date-sent + ** .dd date-received + ** .dd from + ** .dd mailbox-order (unsorted) + ** .dd score + ** .dd size + ** .dd spam + ** .dd subject + ** .dd threads + ** .dd to + ** .ie ** .pp ** You may optionally use the reverse- prefix to specify reverse sorting ** order (example: set sort=reverse-date-sent). @@ -2703,11 +2703,11 @@ struct option_t MuttVars[] = { ** Specifies how the entries in the `alias' menu are sorted. The ** following are legal values: ** .pp - ** .ts - ** . address (sort alphabetically by email address) - ** . alias (sort alphabetically by alias name) - ** . unsorted (leave in order specified in .muttrc) - ** .te + ** .il + ** .dd address (sort alphabetically by email address) + ** .dd alias (sort alphabetically by alias name) + ** .dd unsorted (leave in order specified in .muttrc) + ** .ie */ { "sort_aux", DT_SORT|DT_SORT_AUX, R_INDEX|R_RESORT_BOTH, UL &SortAux, SORT_DATE }, /* @@ -2732,12 +2732,12 @@ struct option_t MuttVars[] = { ** Specifies how to sort entries in the file browser. By default, the ** entries are sorted alphabetically. Valid values: ** .pp - ** .ts - ** . alpha (alphabetically) - ** . date - ** . size - ** . unsorted - ** .te + ** .il + ** .dd alpha (alphabetically) + ** .dd date + ** .dd size + ** .dd unsorted + ** .ie ** .pp ** You may optionally use the reverse- prefix to specify reverse sorting ** order (example: set sort_browser=reverse-date).