1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 14:02:28 +01:00

fixed custom hints

This commit is contained in:
Martin Stubenschrott
2008-10-27 23:01:57 +00:00
parent b7368db6dd
commit bded827ce7

View File

@@ -534,7 +534,7 @@ function Hints() //{{{
case "contains" : return containsMatcher(hintString);
case "wordstartswith": return wordStartsWithMatcher(hintString, /*allowWordOverleaping=*/ true);
case "firstletters" : return wordStartsWithMatcher(hintString, /*allowWordOverleaping=*/ false);
case "custom" : return plugins.customHintMatcher(hintString);
case "custom" : return liberator.plugins.customHintMatcher(hintString);
default : liberator.echoerr("Invalid hintmatching type: " + hintMatching);
}
return null;