mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 04:57:58 +01:00
Allow empty defsearch.
This commit is contained in:
committed by
Kris Maglione
parent
6e9262ef64
commit
073383ef12
@@ -1645,7 +1645,7 @@ function Completion() //{{{
|
||||
let engines = bookmarks.getSearchEngines();
|
||||
|
||||
context.title = ["Search Keywords"];
|
||||
context.completions = keywords.concat(engines);
|
||||
context.completions = [ bookmarks.makeKeyword("", "No default search engine", null, "") ].concat( keywords.concat(engines) );
|
||||
context.keys = { text: 0, description: 1, icon: 2 };
|
||||
|
||||
if (!space || noSuggest)
|
||||
|
||||
Reference in New Issue
Block a user