summaryrefslogtreecommitdiff
path: root/xulmus/locale/en-US/pattern.txt
blob: 8f7ba4c3737dc6431003ec526b8bd2296ee730cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
heading:Text{nbsp}search{nbsp}commands[text-search-commands]

Xulmus provides a Vim-like interface to Songbird's standard text search
functionality. There is no support for using regular expressions in search
commands as Songbird does not provide native regex support. It is unlikely that
this will ever be available.

|/| +
||/{pattern}[/]<CR>|| +
________________________________________________________________________________
Search forward for the first occurrence of {pattern}.

If "\c" appears anywhere in the pattern the whole pattern is handled as though
'ignorecase' is on. "\C" forces case-sensitive matching for the whole pattern. +
If "\l" appears in the pattern only the text of links is searched for a
match as though 'linksearch' is on. "\L" forces the entire page to be searched
for a match.
________________________________________________________________________________


|?| +
||?{pattern}[?]<CR>|| +
________________________________________________________________________________
Search backwards for {pattern}.

{pattern} can use the same modifiers as for [m]/[m]. +

Note: incremental searching currently only works in the forward direction.
________________________________________________________________________________


|n| +
||n||
________________________________________________________________________________
Find next. Repeat the last search 1 time (until count is supported).
________________________________________________________________________________


|N| +
||N||
________________________________________________________________________________
Find previous. Repeat the last search 1 time (until count is supported) in the
opposite direction.
________________________________________________________________________________


|\*| +
||\*||
________________________________________________________________________________
Search forward for the next word under the cursor.
________________________________________________________________________________


|\#| +
||\#||
________________________________________________________________________________
Search backward for the previous word under the cursor.
________________________________________________________________________________


|:noh| |:nohlsearch| +
||:noh[lsearch]||
________________________________________________________________________________
Remove the search highlighting. The document highlighting is turned back on
when another search command is used or the 'hlsearch' option is set.
________________________________________________________________________________

// vim: set filetype=asciidoc: