diff options
| author | Stephen Blott | 2016-03-26 11:49:22 +0000 | 
|---|---|---|
| committer | Stephen Blott | 2016-03-26 11:50:50 +0000 | 
| commit | c40f6fa3da204144b6a1a0fca5f7849a9ce5fe3e (patch) | |
| tree | b1af3830e6c7d57dd9c21e7c8356ccacfc6f7485 | |
| parent | 5ab004ba38019aea32408af2bff422e6f01a7430 (diff) | |
| download | vimium-c40f6fa3da204144b6a1a0fca5f7849a9ce5fe3e.tar.bz2 | |
Move command to correct spot.
This command (LinkHints.activateModeToCopyLinkUrl) has been in the wrong
spot for quite some time.  This just moves it to be with the other
link-hints commands.
| -rw-r--r-- | background_scripts/commands.coffee | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee index 4ec8e6d9..209b5ea3 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -131,7 +131,6 @@ Commands =        "reload",        "toggleViewSource",        "copyCurrentUrl", -      "LinkHints.activateModeToCopyLinkUrl",        "openCopiedUrlInCurrentTab",        "openCopiedUrlInNewTab",        "goUp", @@ -147,6 +146,7 @@ Commands =        "LinkHints.activateModeWithQueue",        "LinkHints.activateModeToDownloadLink",        "LinkHints.activateModeToOpenIncognito", +      "LinkHints.activateModeToCopyLinkUrl",        "goPrevious",        "goNext",        "nextFrame", @@ -238,9 +238,10 @@ defaultKeyMappings =    "gi": "focusInput" -  "f":     "LinkHints.activateMode" -  "F":     "LinkHints.activateModeToOpenInNewTab" +  "f": "LinkHints.activateMode" +  "F": "LinkHints.activateModeToOpenInNewTab"    "<a-f>": "LinkHints.activateModeWithQueue" +  "yf": "LinkHints.activateModeToCopyLinkUrl"    "/": "enterFindMode"    "n": "performFind" @@ -250,7 +251,6 @@ defaultKeyMappings =    "]]": "goNext"    "yy": "copyCurrentUrl" -  "yf": "LinkHints.activateModeToCopyLinkUrl"    "p": "openCopiedUrlInCurrentTab"    "P": "openCopiedUrlInNewTab" @@ -315,7 +315,6 @@ 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"]    openCopiedUrlInCurrentTab: ["Open the clipboard's URL in the current tab", { background: true, noRepeat: true }]    openCopiedUrlInNewTab: ["Open the clipboard's URL in a new tab", { background: true, repeatLimit: 20 }] @@ -332,6 +331,7 @@ commandDescriptions =    "LinkHints.activateModeWithQueue": ["Open multiple links in a new tab", { noRepeat: true }]    "LinkHints.activateModeToOpenIncognito": ["Open a link in incognito window"]    "LinkHints.activateModeToDownloadLink": ["Download link url"] +  "LinkHints.activateModeToCopyLinkUrl": ["Copy a link URL to the clipboard"]    enterFindMode: ["Enter find mode", { noRepeat: true }]    performFind: ["Cycle forward to the next find match"] | 
