]> granicus.if.org Git - neomutt/commitdiff
docs: limit-current-thread
authorRichard Russon <rich@flatcap.org>
Tue, 2 Aug 2016 09:16:16 +0000 (10:16 +0100)
committerRichard Russon <rich@flatcap.org>
Thu, 18 Aug 2016 14:51:01 +0000 (15:51 +0100)
doc/manual.xml.head
doc/muttrc.limit-current-thread [new file with mode: 0644]

index 24925681d8f3f4bc1f10163755e45fb5d308aa9f..3ddaa1e66d1f4e0c564e5fe33a3f4d660235ff49 100644 (file)
@@ -9948,6 +9948,128 @@ bind index,pager y edit-label
   </sect2>
 </sect1>
 
+<sect1 id="limit-current-thread">
+  <title>Limit-Current-Thread Patch</title>
+  <subtitle>Focus on one Email Thread</subtitle>
+
+  <sect2 id="limit-current-thread-patch">
+    <title>Patch</title>
+
+    <para>
+      To check if Mutt supports <quote>limit-current-thread</quote>, look for
+      <quote>patch-limit-current-thread</quote> in the mutt version.
+      See: <xref linkend="mutt-patches"/>.
+    </para>
+
+    <itemizedlist>
+      <title>Dependencies:</title>
+      <listitem><para>mutt-1.6.2</para></listitem>
+    </itemizedlist>
+
+    <para>This patch is part of the <ulink url="http://www.neomutt.org/">NeoMutt Project</ulink>.</para>
+  </sect2>
+
+  <sect2 id="limit-current-thread-intro">
+    <title>Introduction</title>
+
+    <para>
+      This patch adds a new way of using the
+      <link linkend="tuning-search">Limit Command</link>.
+      The <literal>&lt;limit-current-thread&gt;</literal>
+      function restricts the view to just the current thread.
+      Setting the limit (the <literal>l</literal> key) to
+      <quote>all</quote> will restore the full email list.
+    </para>
+
+  </sect2>
+
+<!--
+  <sect2 id="limit-current-thread-variables">
+    <title>Variables</title>
+    <para>None</para>
+  </sect2>
+-->
+  <sect2 id="limit-current-thread-functions">
+    <title>Functions</title>
+
+    <para>
+      Limit-current-thread adds the following function to Mutt.
+      By default, it is not bound to a key.
+    </para>
+
+    <table id="table-limit-current-thread-functions">
+      <title>Limit-Current-Thread Functions</title>
+      <tgroup cols="3">
+        <thead>
+          <row>
+            <entry>Menus</entry>
+            <entry>Function</entry>
+            <entry>Description</entry>
+          </row>
+        </thead>
+        <tbody>
+          <row>
+            <entry>index</entry>
+            <entry><literal>&lt;limit-current-thread&gt;</literal></entry>
+            <entry>Limit view to current thread</entry>
+          </row>
+        </tbody>
+      </tgroup>
+    </table>
+
+  </sect2>
+<!--
+  <sect2 id="limit-current-thread-commands">
+    <title>Commands</title>
+    <para>None</para>
+  </sect2>
+
+  <sect2 id="limit-current-thread-colors">
+    <title>Colors</title>
+    <para>None</para>
+  </sect2>
+
+  <sect2 id="limit-current-thread-sort">
+    <title>Sort</title>
+    <para>None</para>
+  </sect2>
+-->
+
+  <sect2 id="limit-current-thread-muttrc">
+    <title>Muttrc</title>
+
+<screen>
+<emphasis role="comment"># Example Mutt config file for the 'limit-current-thread' patch.
+# Limit view to current thread</emphasis>
+bind index &lt;esc&gt;L limit-current-thread
+<emphasis role="comment"># vim: syntax=muttrc</emphasis>
+</screen>
+  </sect2>
+
+  <sect2 id="limit-current-thread-see-also">
+    <title>See Also</title>
+
+    <itemizedlist>
+      <listitem><para><ulink url="http://www.neomutt.org/">NeoMutt Project</ulink></para></listitem>
+    </itemizedlist>
+  </sect2>
+
+  <sect2 id="limit-current-thread-known-bugs">
+    <title>Known Bugs</title>
+    <para>None</para>
+  </sect2>
+
+  <sect2 id="limit-current-thread-credits">
+    <title>Credits</title>
+    <itemizedlist>
+    <listitem><para>David Sterba <email>dsterba@suse.cz</email></para></listitem>
+    <listitem><para>Richard Russon <email>rich@flatcap.org</email></para></listitem>
+    </itemizedlist>
+  </sect2>
+</sect1>
+
 <sect1 id="sidebar">
   <title>Sidebar</title>
   <subtitle>Overview of mailboxes</subtitle>
diff --git a/doc/muttrc.limit-current-thread b/doc/muttrc.limit-current-thread
new file mode 100644 (file)
index 0000000..5d32cf5
--- /dev/null
@@ -0,0 +1,6 @@
+# Example Mutt config file for the 'limit-current-thread' patch.
+# Limit view to current thread
+bind index <esc>L limit-current-thread
+# vim: syntax=muttrc