From: Richard Russon Date: Tue, 2 Aug 2016 09:17:40 +0000 (+0100) Subject: docs: progress X-Git-Tag: neomutt-20160822~24^2~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ae9c4a78fcbf4cb530d473a4dd1a6b00e660a023;p=neomutt docs: progress --- diff --git a/doc/manual.xml.head b/doc/manual.xml.head index bb393cbbd..8fab50e0d 100644 --- a/doc/manual.xml.head +++ b/doc/manual.xml.head @@ -2723,6 +2723,7 @@ patterns. markers (the + markers at the beginning of wrapped lines in the pager) message (informational messages) normal +progress (visual progress bar) prompt quoted (text matching $quote_regexp in the body of a message) quoted1, quoted2, ..., quotedN (higher levels of quoting) @@ -11460,6 +11461,125 @@ color index_tags green default + + Progress Bar Patch + Show a visual progress bar on slow operations + + + Patch + + + To check if Mutt supports Progress Bar, look for + patch-progress in the mutt version. + See: . + + + + Dependencies: + mutt-1.6.2 + + + This patch is part of the NeoMutt Project. + + + + Introduction + + + The progress patch shows a visual progress bar on slow + tasks, such as indexing a large folder over the net. + + + + + + + Colors + + Progress Colors + + + + Name + Default Color + Description + + + + + progress + default + Visual progress bar + + + +
+
+ + + + + Muttrc + +# Example Mutt config file for the 'progress' patch. + +# The 'progress' patch provides clear visual feedback for +# slow tasks, such as indexing a large folder over the net. + +# Set the color of the progress bar +# White text on a red background +color progress white red + +# vim: syntax=muttrc + + + + + See Also + + + NeoMutt Project + Color command + + + + + Known Bugs + None + + + + Credits + + Rocco Rutte pdmef@gmx.net + Vincent Lefevre vincent@vinc17.org + Stefan Kuhn wuodan@hispeed.ch + Karel Zak kzak@redhat.com + Richard Russon rich@flatcap.org + + +
+ Sidebar Overview of mailboxes diff --git a/doc/muttrc.progress b/doc/muttrc.progress new file mode 100644 index 000000000..7efe45c5f --- /dev/null +++ b/doc/muttrc.progress @@ -0,0 +1,10 @@ +# Example Mutt config file for the 'progress' patch. + +# The 'progress' patch provides clear visual feedback for +# slow tasks, such as indexing a large folder over the net. + +# Set the color of the progress bar +# White text on a red background +color progress white red + +# vim: syntax=muttrc diff --git a/doc/vimrc.progress b/doc/vimrc.progress new file mode 100644 index 000000000..a632dc020 --- /dev/null +++ b/doc/vimrc.progress @@ -0,0 +1,5 @@ +" Vim syntax file for the mutt progress patch + +syntax keyword muttrcColorField contained progress + +" vim: syntax=vim