mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-04-21 16:01:30 +02:00
fix the meaning of the \l and \L search pattern modifiers which were inverted
This commit is contained in:
+2
-2
@@ -77,9 +77,9 @@ liberator.Search = function () //{{{
|
||||
|
||||
// links only search - \l wins if both modifiers specified
|
||||
if (/\\l/.test(pattern))
|
||||
linksOnly = false;
|
||||
else if (/\L/.test(pattern))
|
||||
linksOnly = true;
|
||||
else if (/\L/.test(pattern))
|
||||
linksOnly = false;
|
||||
else if (liberator.options["linksearch"])
|
||||
linksOnly = true;
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user