aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts/completion_engines.coffee
diff options
context:
space:
mode:
authorStephen Blott2015-05-11 16:26:01 +0100
committerStephen Blott2015-05-11 17:08:17 +0100
commitc2c744b1962af4413722ce468fe3e555fff8496e (patch)
tree4c015cfc2e82b4645c125ee1db824998712b10cb /background_scripts/completion_engines.coffee
parent7f0736ee48c80e33ec8d7ef52e1a713501281f72 (diff)
downloadvimium-c2c744b1962af4413722ce468fe3e555fff8496e.tar.bz2
Search completion; fix typos and small bugs.
Bugs: - The serch-engine completer wasn't being configured correctly for the case when we don't have a completion engine. - Handle Control-Shift-Left/Right in vomnibar. Also: better comments.
Diffstat (limited to 'background_scripts/completion_engines.coffee')
-rw-r--r--background_scripts/completion_engines.coffee4
1 files changed, 2 insertions, 2 deletions
diff --git a/background_scripts/completion_engines.coffee b/background_scripts/completion_engines.coffee
index 14e65692..048e9020 100644
--- a/background_scripts/completion_engines.coffee
+++ b/background_scripts/completion_engines.coffee
@@ -1,6 +1,6 @@
# A completion engine provides search suggestions for a search engine. A search engine is identified by a
-# "searchUrl", e.g. Settings.get("searchUrl"), or a custom search engine.
+# "searchUrl", e.g. Settings.get("searchUrl"), or a custom search engine URL.
#
# Each completion engine defines three functions:
#
@@ -14,7 +14,7 @@
# returns a list of suggestions (a list of strings). This method is always executed within the context
# of a try/catch block, so errors do not propagate.
#
-# Each new completion engine must be add to the list "CompletionEngines" at the bottom of this file.
+# Each new completion engine must be added to the list "CompletionEngines" at the bottom of this file.
#
# The lookup logic which uses these completion engines is in "./completion_search.coffee".
#