Text find commands

&dactyl.appName; provides a Vim-like incremental find interface to replace &dactyl.host;'s crippled Typeahead Find. Among other improvements, our find service:

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.

/]]> /pattern

Find pattern starting at the current caret position.

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.

\c
Perform case insensitive find (default if findcase=ignore).
\C
Perform case sensitive find (default if findcase=match).
\l
Search only in links, as defined by hinttags.
\L
Search the entire page.

Additionally, if the /Find Bar/ extension is installed, the following flags may be used,

\r
Process the entire pattern as a regular expression.
\R
Process the entire pattern as an ordinary string.
?]]> ?pattern

Find a pattern backward of the current caret position in exactly the same manner as /

n]]> n

Find next. Repeat the last find.

N]]> N

Find previous. Repeat the last find in the opposite direction.

*]]> *

Search forward for the next occurrence of the word under cursor.

#]]> #

Search backward for the previous occurrence of the word under cursor.

:noh :nohlfind :nohlfind

Remove the find highlighting. The document is highlighted again when another find command is used or the hlfind option is set.