From c40f6fa3da204144b6a1a0fca5f7849a9ce5fe3e Mon Sep 17 00:00:00 2001 From: Stephen Blott Date: Sat, 26 Mar 2016 11:49:22 +0000 Subject: 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. --- background_scripts/commands.coffee | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'background_scripts/commands.coffee') 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" "": "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"] -- cgit v1.2.3