1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-04-26 06:11:26 +02:00

Add completion for empty 'defsearch'

This commit is contained in:
Kris Maglione
2008-12-19 12:33:22 -05:00
parent aaab59aab6
commit f95dfac83f
2 changed files with 8 additions and 1 deletions
+5 -1
View File
@@ -258,7 +258,11 @@ function Bookmarks() //{{{
"Set the default search engine",
"string", "google",
{
completer: function completer(context) completion.search(context, true),
completer: function completer(context)
{
completion.search(context, true)
context.completions = [["", "Don't perform searches by default"]].concat(context.completions);
},
validator: Option.validateCompleter
});