1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-22 08:05:46 +01:00

Add crude regexp search functionality. Why not. Add 'findflags'. Fix some rangefind bugs.

This commit is contained in:
Kris Maglione
2011-09-24 21:38:45 -04:00
parent ef965d7681
commit 6c7d51b086
4 changed files with 97 additions and 31 deletions

View File

@@ -719,6 +719,25 @@
</description>
</item>
<item>
<tags>'ff' 'findflags'</tags>
<spec>'findflags'</spec>
<type>&option.findflags.type;</type>
<default>&option.findflags.default;</default>
<description>
<p>Default flags for find invocations.</p>
<dl>
<dt>C</dt> <dd>Match case</dd>
<dt>L</dt> <dd>Search all text</dd>
<dt>R</dt> <dd>Perform a plain string search</dd>
<dt>c</dt> <dd>Ignore case</dd>
<dt>l</dt> <dd>Search only in links</dd>
<dt>r</dt> <dd>Perform a regular expression search</dd>
</dl>
</description>
</item>
<item>
<tags>'fh' 'followhints'</tags>
<spec>'followhints' 'fh'</spec>
@@ -944,7 +963,10 @@
<type>&option.hlfind.type;</type>
<default>&option.hlfind.default;</default>
<description>
<p>Highlight previous find pattern matches.</p>
<p>
Highlight previous find pattern matches. This functionality is not
currently available for regular expression searches.
</p>
</description>
</item>

View File

@@ -36,14 +36,11 @@
<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>