aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts/commands.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'background_scripts/commands.coffee')
-rw-r--r--background_scripts/commands.coffee6
1 files changed, 4 insertions, 2 deletions
diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee
index 1db7d980..98724a20 100644
--- a/background_scripts/commands.coffee
+++ b/background_scripts/commands.coffee
@@ -21,6 +21,7 @@ Commands =
description: description
isBackgroundCommand: options.background
passCountToFunction: options.passCountToFunction
+ noRepeat: options.noRepeat
mapKeyToCommand: (key, command) ->
unless @availableCommands[command]
@@ -31,6 +32,7 @@ Commands =
command: command
isBackgroundCommand: @availableCommands[command].isBackgroundCommand
passCountToFunction: @availableCommands[command].passCountToFunction
+ noRepeat: @availableCommands[command].noRepeat
unmapKey: (key) -> delete @keyToCommandRegistry[key]
@@ -63,7 +65,7 @@ Commands =
continue unless @availableCommands[vimiumCommand]
- console.log("Mapping", key, "to", vimiumCommand)
+ konsole.log("Mapping", key, "to", vimiumCommand)
@mapKeyToCommand(key, vimiumCommand)
else if (lineCommand == "unmap")
continue if (splitLine.length != 2)
@@ -236,7 +238,7 @@ commandDescriptions =
lastTab: ["Go to the last tab", { background: true }]
createTab: ["Create new tab", { background: true }]
duplicateTab: ["Duplicate current tab", { background: true }]
- removeTab: ["Close current tab", { background: true }]
+ removeTab: ["Close current tab", { background: true, noRepeat: true }]
restoreTab: ["Restore closed tab", { background: true }]
"Vomnibar.activate": ["Open URL, bookmark, or history entry"]