aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts
diff options
context:
space:
mode:
authorStephen Blott2014-10-26 15:48:52 +0000
committerStephen Blott2014-10-26 15:48:52 +0000
commit061647b61193ae0f2ccf6a87cc913e2ab67dc949 (patch)
tree39d17d99cfbc996cf3f3c13e498167a348f506a3 /background_scripts
parent1ecf6c67eafff0cac7ac2411bcbdc7516ea96106 (diff)
downloadvimium-061647b61193ae0f2ccf6a87cc913e2ab67dc949.tar.bz2
Increase repeatLimits.
Diffstat (limited to 'background_scripts')
-rw-r--r--background_scripts/commands.coffee10
1 files changed, 5 insertions, 5 deletions
diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee
index 4a626d36..4bb6255e 100644
--- a/background_scripts/commands.coffee
+++ b/background_scripts/commands.coffee
@@ -281,7 +281,7 @@ commandDescriptions =
copyCurrentUrl: ["Copy the current URL to the clipboard", { noRepeat: true }]
"LinkHints.activateModeToCopyLinkUrl": ["Copy a link URL to the clipboard", { noRepeat: true }]
openCopiedUrlInCurrentTab: ["Open the clipboard's URL in the current tab", { background: true }]
- openCopiedUrlInNewTab: ["Open the clipboard's URL in a new tab", { background: true, repeatLimit: 3 }]
+ openCopiedUrlInNewTab: ["Open the clipboard's URL in a new tab", { background: true, repeatLimit: 20 }]
enterInsertMode: ["Enter insert mode", { noRepeat: true }]
@@ -316,10 +316,10 @@ commandDescriptions =
firstTab: ["Go to the first tab", { background: true }]
lastTab: ["Go to the last tab", { background: true }]
- createTab: ["Create new tab", { background: true, repeatLimit: 2 }]
- duplicateTab: ["Duplicate current tab", { background: true, repeatLimit: 2 }]
- removeTab: ["Close current tab", { background: true, repeatLimit: 3 }]
- restoreTab: ["Restore closed tab", { background: true, repeatLimit: 3 }]
+ createTab: ["Create new tab", { background: true, repeatLimit: 20 }]
+ duplicateTab: ["Duplicate current tab", { background: true, repeatLimit: 20 }]
+ removeTab: ["Close current tab", { background: true, repeatLimit: 50 }]
+ restoreTab: ["Restore closed tab", { background: true, repeatLimit: 20 }]
moveTabToNewWindow: ["Move tab to new window", { background: true }]
togglePinTab: ["Pin/unpin current tab", { background: true }]