From: Richard Russon Date: Sat, 26 Mar 2016 03:57:25 +0000 (+0000) Subject: add docs X-Git-Tag: neomutt-20160404~7^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c0ac6b4e150cd5e98d4f640f3efb2a76ef196cf8;p=neomutt add docs --- diff --git a/README.skip-quoted b/README.skip-quoted new file mode 100644 index 000000000..666e98ec5 --- /dev/null +++ b/README.skip-quoted @@ -0,0 +1,47 @@ +Skip-Quoted Patch +================= + + Leave some context visible + +Patch +----- + + To check if Mutt supports "Skip-Quoted", look for "patch-skip-quoted" in + the mutt version. + + Dependencies + * mutt-1.5.24 + +Introduction +------------ + + When viewing an email, the '' function (by default the 'S' + key) will scroll past any quoted text. Sometimes, a little context is + useful. + + By setting the '$skip_quoted_offset' variable, you can select how much of + the quoted text is left visible. + +Variables +--------- + + | Name | Type | Default | + |----------------------|--------|---------| + | 'skip_quoted_offset' | number | 0 | + +See Also +-------- + + * NeoMutt project + +Known Bugs +---------- + + None + +Credits +------- + + * David Sterba + * Richard Russon + diff --git a/doc/manual.xml.head b/doc/manual.xml.head index b90908f00..ffe805fe2 100644 --- a/doc/manual.xml.head +++ b/doc/manual.xml.head @@ -8081,6 +8081,127 @@ please have a look at the mixmaster documentation. + + Skip-Quoted Patch + Leave some context visible + + + Patch + + + To check if Mutt supports skip-quoted, look for + patch-skip-quoted in the mutt version. + See: . + + + + Dependencies: + mutt-1.5.24 + + + This patch is part of the NeoMutt Project. + + + + Introduction + + + When viewing an email, the + <skip-to-quoted> function (by default the + S key) will scroll past any quoted text. + Sometimes, a little context is useful. + + + + By setting the $skip_quoted_offset variable, you + can select how much of the quoted text is left visible. + + + + + Variables + + Skip-Quoted Variables + + + + Name + Type + Default + + + + + skip_quoted_offset + number + 0 + + + +
+
+ + + + + Muttrc + + +# Example Mutt config file for the 'skip-quoted' patch. + +# The 'S' (skip-quoted) command scrolls the pager past the quoted text (usually +# indented with '> '. Setting 'skip_quoted_offset' leaves some lines of quoted +# text on screen for context. + +# Show three quoted lines before the reply +set skip_quoted_offset = 3 + +# vim: syntax=muttrc + + + + + See Also + + + NeoMutt Project + + + + + Known Bugs + None + + + + Credits + + David Sterba dsterba@suse.cz + Richard Russon rich@flatcap.org + + +
+ diff --git a/doc/muttrc.skip-quoted b/doc/muttrc.skip-quoted new file mode 100644 index 000000000..cd13ed483 --- /dev/null +++ b/doc/muttrc.skip-quoted @@ -0,0 +1,10 @@ +# Example Mutt config file for the 'skip-quoted' patch. + +# The 'S' (skip-quoted) command scrolls the pager past the quoted text (usually +# indented with '> '. Setting 'skip_quoted_offset' leaves some lines of quoted +# text on screen for context. + +# Show three quoted lines before the reply +set skip_quoted_offset = 3 + +# vim: syntax=muttrc