1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-04-21 14:31:25 +02:00

Normalise the use of "regexp(s)" vs "regex(es)".

"regex" won the Google battle.
This commit is contained in:
Doug Kearns
2009-07-11 15:50:48 +10:00
parent c51761e08b
commit c47a0ec1cc
14 changed files with 21 additions and 21 deletions
+4 -4
View File
@@ -762,8 +762,8 @@ ____
|\'urlseparator'|
||'urlseparator'|| string (default: ",\s")
____
Set the separator regexp used to separate multiple URL args. Multiple arguments
can be specified for [c]:open[c], and similar commands, using this regexp as
Set the separator regex used to separate multiple URL args. Multiple arguments
can be specified for [c]:open[c], and similar commands, using this regex as
the separator. Using whitespace alone is not generally useful since it is often
contained in a single argument. E.g. [c]:open linus torvalds[c] should perform
a single search for the key words "linus" and "torvalds"
@@ -813,7 +813,7 @@ ____
List of file patterns to ignore when completing files. E.g. to ignore object
files and Vim swap files [c]:set wildignore=".*\.o,\..*\.s[a-z]\\{2}"[c]
Note: Unlike Vim each pattern is a regexp rather than a glob.
Note: Unlike Vim each pattern is a regex rather than a glob.
____
@@ -859,7 +859,7 @@ ____
____
(default: [\.,!\?:;/\\"\^\$%&?\(\)\[\]\\{\\}<>#\\*\+\\|=~ _\\-])
A regexp which defines the word separators which are used for the
A regex which defines the word separators which are used for the
'hintmatching' types "wordstartswith" and "firstletters" to split the words in
the text of a link.
____