aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts/main.coffee
diff options
context:
space:
mode:
authorStephen Blott2015-05-01 13:19:23 +0100
committerStephen Blott2015-05-02 14:35:49 +0100
commit3616e0d01ffb38e9b7d344b99ad6ce7bc6aa071e (patch)
tree3bac6dc0267feea852d91ed3139f55030b6d719d /background_scripts/main.coffee
parent1debac63fcc71c88427da9b1ae450067c15cd2b2 (diff)
downloadvimium-3616e0d01ffb38e9b7d344b99ad6ce7bc6aa071e.tar.bz2
Search completion; initial working version.
Diffstat (limited to 'background_scripts/main.coffee')
-rw-r--r--background_scripts/main.coffee6
1 files changed, 4 insertions, 2 deletions
diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee
index 353f0e53..6f7db05c 100644
--- a/background_scripts/main.coffee
+++ b/background_scripts/main.coffee
@@ -47,11 +47,13 @@ completionSources =
history: new HistoryCompleter()
domains: new DomainCompleter()
tabs: new TabCompleter()
- seachEngines: new CustomSearchEngineCompleter()
+ customSearchEngines: new CustomSearchEngineCompleter()
+ searchEngines: new SearchEngineCompleter()
completers =
omni: new MultiCompleter([
- completionSources.seachEngines,
+ completionSources.searchEngines,
+ completionSources.customSearchEngines,
completionSources.bookmarks,
completionSources.history,
completionSources.domains])