1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-04-17 01:43:33 +02:00

Minor copyedits.

This commit is contained in:
Ted Pavlic
2009-01-20 11:54:46 -05:00
parent 1f93e422e7
commit 8b95e72115
8 changed files with 24 additions and 24 deletions

View File

@@ -132,8 +132,8 @@ ____
||:setl[ocal] {option}-={value}|| +
____
The same as [c]:set[c] command, but operates on local for current
tab options only. See [c]:set[c] for details.
The same as [c]:set[c] command, but it operates for current tab options
only. See [c]:set[c] for details.
____
|:setglobal| |:setg|
@@ -151,7 +151,7 @@ ____
||:setg[lobal] {option}-={value}|| +
____
The same as [c]:set[c] command, but operates on global options only.
The same as [c]:set[c] command, but it operates on global options only.
See [c]:set[c] for details.
____
@@ -367,7 +367,7 @@ Change the hint matching algorithm during hint mode. Possible values:
`--------------------`-------------------------------------------------------------------------------------------------------------------------------
*contains* The typed characters are split on whitespace, and these character groups have to match anywhere inside the text of the link.
*wordstartswith* The typed characters are matched with the beginning of the first word (see 'wordseparators') in the link as long as possible. If no matches occur in the current word, then the matching is continued at the beginning of the next word. The words are worked through in the order they appear in the link. If the typed characters contain spaces, then the characters are split on whitespace. These character groups are then matched with the beginning of the words, beginning at the first one and continuing with the following words in the order they appear in the link.
*firstletters* Behaves like wordstartswith, but non matching words aren't overleaped.
*firstletters* Behaves like wordstartswith, but non-matching words aren't overleaped.
*custom* Delegate to a custom function: liberator.plugins.customHintMatcher(hintString)
-----------------------------------------------------------------------------------------------------------------------------------------------------