diff options
Diffstat (limited to 'background_scripts/commands.coffee')
| -rw-r--r-- | background_scripts/commands.coffee | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee index fe063066..825160d8 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -110,7 +110,7 @@ Commands =    # from Vimium will uncover these gems.    advancedCommands: [      "scrollToLeft", "scrollToRight", "moveTabToNewWindow", -    "goUp", "goToRoot", "focusInput", "LinkHints.activateModeWithQueue", +    "goUp", "goToRoot", "focusInput", "LinkHints.activateModeWithQueue", "LinkHints.activateModeToDownloadLink",      "LinkHints.activateModeToOpenIncognito", "goNext", "goPrevious", "Marks.activateCreateMode",      "Marks.activateGotoMode", "moveTabLeft", "moveTabRight",      "closeTabsOnLeft","closeTabsOnRight", "closeOtherTabs"] @@ -146,6 +146,8 @@ defaultKeyMappings =    "F":     "LinkHints.activateModeToOpenInNewTab"    "<a-f>": "LinkHints.activateModeWithQueue" +  "af": "LinkHints.activateModeToDownloadLink" +    "/": "enterFindMode"    "n": "performFind"    "N": "performBackwardsFind" @@ -228,6 +230,7 @@ commandDescriptions =    "LinkHints.activateModeToOpenIncognito": ["Open a link in incognito window"] +  "LinkHints.activateModeToDownloadLink": ["Download link url"]    enterFindMode: ["Enter find mode"]    performFind: ["Cycle forward to the next find match"]    performBackwardsFind: ["Cycle backward to the previous find match"] | 
