]> git.donarmstrong.com Git - dactyl.git/blobdiff - common/locale/en-US/autocommands.xml
New upstream version 1.0+hg6948
[dactyl.git] / common / locale / en-US / autocommands.xml
index 260eb074b852ca775432a6fc63b62d09933f1862..d5e3fa14b2ff7ad5b0f662b4fdb941d21a8a9137 100644 (file)
         </p>
 
         <p>
-            If the <em>-group</em>=<a>group</a> flag is given, add this autocmd
-            to the named <t>group</t>. Any filters for <a>group</a> apply in
-            addition to <oa>filter</oa>.
+            If the <em>-group</em>=<a>group</a> flag is given, add this
+            autocommand to the named <t>group</t>. Any filters for <a>group</a>
+            apply in addition to <oa>filter</oa>. When listing commands this
+            limits the output to the specified group.
         </p>
 
         <p>Available <oa>events</oa>:</p>
 </item>
 <h2 tag="autocmd-examples">Examples</h2>
 
-<p>Enable <em>passthrough</em> mode on all Google sites:</p>
+<p>Enable <em>Pass Through</em> mode on all Google sites:</p>
 
 <code><ex>:autocmd LocationChange</ex> <str delim="">google.com</str> <ex>:normal!</ex> <k name="C-z"/></code>
 
-<p>Enable <em>passthrough</em> mode on <em>some</em> Google sites:</p>
+<p>Enable <em>Pass Through</em> mode on <em>some</em> Google sites:</p>
 
-<code><ex>:autocmd LocationChange</ex> <str delim="'">^https?://(www|mail)\.google\.com/</str> <ex>:normal!</ex> <k name="C-z"/></code>
+<code><ex>:autocmd LocationChange</ex> <str delim="">www.google.com</str>,<str delim="">mail.google.com</str> <ex>:normal!</ex> <k name="C-z"/></code>
 
 <p>or</p>
 
-<code><ex>:autocmd LocationChange</ex> <str delim="">www.google.com</str>,<str delim="">mail.google.com</str> <ex>:normal!</ex> <k name="C-z"/></code>
+<code><ex>:autocmd LocationChange</ex> <str delim="'">^https?://(www|mail)\.google\.com/</str> <ex>:normal!</ex> <k name="C-z"/></code>
 
 <p>Set the filetype to mail when editing email at Gmail:</p>