]> git.donarmstrong.com Git - dactyl.git/blobdiff - common/locale/en-US/pattern.xml
Import 1.0rc1 supporting Firefox up to 11.*
[dactyl.git] / common / locale / en-US / pattern.xml
index 6ecac3a04a31d9ea0ed37fcff5e710d5e50119dc..78088274e30d004efe378dfe0820105c6ee6def9 100644 (file)
     <li>
         Escape sequences to toggle link-only and case-sensitive find.
     </li>
+    <li>
+        Crude regular expression searches are supported.
+    </li>
 </ul>
 
-<p>
-    Regular expression find, however, is not currently available unless the
-    /Find Bar/ service is installed, in which case it may be toggled on with
-    a find flag.
-</p>
-
 <item>
     <tags><![CDATA[<find-forward> /]]></tags>
-    <spec>/<a>pattern</a><k name="CR"/></spec>
+    <spec>/<a>pattern</a><k name="CR" link="false"/></spec>
     <description>
         <p>Find <a>pattern</a> starting at the current caret position.</p>
 
         <p>
-            The following escape sequences can be used to modify the
-            behavior of the find. When flags conflict, the last to
-            appear is the one that takes effect.
+            The following escape sequences can be used anywhere in
+            <a>pattern</a> to modify the behavior of the search. When flags
+            conflict, the last to appear is the one that takes effect.
         </p>
 
         <dl dt="width: 6em;">
             <dt>\C</dt> <dd>Perform case sensitive find (default if <o>findcase</o>=<str>match</str>).</dd>
             <dt>\l</dt> <dd>Search only in links, as defined by <o>hinttags</o>.</dd>
             <dt>\L</dt> <dd>Search the entire page.</dd>
-        </dl>
-
-        <p>
-            Additionally, if the /Find Bar/ extension is installed, the
-            following flags may be used,
-        </p>
-        <dl dt="width: 6em;">
             <dt>\r</dt> <dd>Process the entire pattern as a regular expression.</dd>
             <dt>\R</dt> <dd>Process the entire pattern as an ordinary string.</dd>
         </dl>
 </item>
 
 <item>
-    <tags><![CDATA[<find-forward> ?]]></tags>
-    <spec>?<a>pattern</a><k name="CR"/></spec>
+    <tags><![CDATA[<find-backward> <S-Slash> ?]]></tags>
+    <spec>?<a>pattern</a><k name="CR" link="false"/></spec>
     <description>
         <p>
             Find a pattern backward of the current caret position in exactly the
-            same manner as <k>/</k>
+            same manner as <k>/</k>.
         </p>
     </description>
 </item>
 </item>
 
 <item>
-    <tags><![CDATA[<find-word-next> *]]></tags>
+    <tags><![CDATA[<find-word-forward> *]]></tags>
     <spec>*</spec>
     <description short="true">
         <p>Search forward for the next occurrence of the word under cursor.</p>
 </item>
 
 <item>
-    <tags><![CDATA[<find-word-previous> #]]></tags>
+    <tags><![CDATA[<find-word-backward> #]]></tags>
     <spec>#</spec>
     <description short="true">
         <p>Search backward for the previous occurrence of the word under cursor.</p>