aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts
diff options
context:
space:
mode:
authorStephen Blott2016-02-01 06:27:37 +0000
committerStephen Blott2016-02-01 06:27:37 +0000
commitfc9ac71d78ecfb2dd33baa649e8971a98518f943 (patch)
tree345ec0a8d72cfa6891c221824e01a37143817cf9 /background_scripts
parent8fdc87e4079975cf2a31fc4b60afb897262c525c (diff)
parentb5cb14171b3dbd48ebb213654f2758781d7f127c (diff)
downloadvimium-fc9ac71d78ecfb2dd33baa649e8971a98518f943.tar.bz2
Merge pull request #1963 from smblott-github/link-hints-with-count
Link hints with count
Diffstat (limited to 'background_scripts')
-rw-r--r--background_scripts/commands.coffee12
1 files changed, 6 insertions, 6 deletions
diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee
index a307f23f..d42fd9fb 100644
--- a/background_scripts/commands.coffee
+++ b/background_scripts/commands.coffee
@@ -270,7 +270,7 @@ commandDescriptions =
toggleViewSource: ["View page source", { noRepeat: true }]
copyCurrentUrl: ["Copy the current URL to the clipboard", { noRepeat: true }]
- "LinkHints.activateModeToCopyLinkUrl": ["Copy a link URL to the clipboard", { noRepeat: true }]
+ "LinkHints.activateModeToCopyLinkUrl": ["Copy a link URL to the clipboard", { passCountToFunction: 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: 20 }]
@@ -281,12 +281,12 @@ commandDescriptions =
focusInput: ["Focus the first text box on the page. Cycle between them using tab",
{ passCountToFunction: true }]
- "LinkHints.activateMode": ["Open a link in the current tab", { noRepeat: true }]
- "LinkHints.activateModeToOpenInNewTab": ["Open a link in a new tab", { noRepeat: true }]
- "LinkHints.activateModeToOpenInNewForegroundTab": ["Open a link in a new tab & switch to it", { noRepeat: true }]
+ "LinkHints.activateMode": ["Open a link in the current tab", { passCountToFunction: true }]
+ "LinkHints.activateModeToOpenInNewTab": ["Open a link in a new tab", { passCountToFunction: true }]
+ "LinkHints.activateModeToOpenInNewForegroundTab": ["Open a link in a new tab & switch to it", { passCountToFunction: true }]
"LinkHints.activateModeWithQueue": ["Open multiple links in a new tab", { noRepeat: true }]
- "LinkHints.activateModeToOpenIncognito": ["Open a link in incognito window", { noRepeat: true }]
- "LinkHints.activateModeToDownloadLink": ["Download link url", { noRepeat: true }]
+ "LinkHints.activateModeToOpenIncognito": ["Open a link in incognito window", { passCountToFunction: true }]
+ "LinkHints.activateModeToDownloadLink": ["Download link url", { passCountToFunction: true }]
enterFindMode: ["Enter find mode", { noRepeat: true }]
performFind: ["Cycle forward to the next find match"]