aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts/main.coffee
diff options
context:
space:
mode:
authorStephen Blott2015-05-31 09:52:50 +0100
committerStephen Blott2015-05-31 09:52:50 +0100
commitbd07321766056cccd083aa69254abc8146bd5266 (patch)
tree59a9300cd4a0806f2f6072db406e00edf80674b4 /background_scripts/main.coffee
parent8b0c610fb68573dbd839133fbc315521db6161f6 (diff)
parent5930a6e3510f2bd052771601581aa410728d68e3 (diff)
downloadvimium-bd07321766056cccd083aa69254abc8146bd5266.tar.bz2
Merge pull request #1697 from smblott-github/vomnibar-map-with-prepopulated-text
Direct keyboard access to custom-search engines via keyword flag
Diffstat (limited to 'background_scripts/main.coffee')
-rw-r--r--background_scripts/main.coffee14
1 files changed, 7 insertions, 7 deletions
diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee
index edcdf3b2..99a5672b 100644
--- a/background_scripts/main.coffee
+++ b/background_scripts/main.coffee
@@ -558,13 +558,13 @@ checkKeyQueue = (keysToCheck, tabId, frameId) ->
if runCommand
if not registryEntry.isBackgroundCommand
- chrome.tabs.sendMessage(tabId,
- name: "executePageCommand",
- command: registryEntry.command,
- frameId: frameId,
- count: count,
- passCountToFunction: registryEntry.passCountToFunction,
- completionKeys: generateCompletionKeys(""))
+ chrome.tabs.sendMessage tabId,
+ name: "executePageCommand"
+ command: registryEntry.command
+ frameId: frameId
+ count: count
+ completionKeys: generateCompletionKeys ""
+ registryEntry: registryEntry
refreshedCompletionKeys = true
else
if registryEntry.passCountToFunction