From d7087414101f193eaf1848b25a6de4b4b3c8990a Mon Sep 17 00:00:00 2001 From: gitressa <3491208+gitressa@users.noreply.github.com> Date: Wed, 17 Jan 2024 10:06:08 +0100 Subject: [PATCH 1/3] Clarify that f shows all links --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 526fc389d..60622e3a9 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,8 @@ Navigating the current page: G scroll to bottom of the page d scroll down half a page u scroll up half a page - f open a link in the current tab - F open a link in a new tab + f show links and open in the current tab + F show links and open in a new tab r reload gs view source i enter insert mode -- all commands will be ignored until you hit Esc to exit @@ -46,10 +46,10 @@ Navigating the current page: Navigating to new pages: - o Open URL, bookmark, or history entry - O Open URL, bookmark, history entry in a new tab - b Open bookmark - B Open bookmark in a new tab + o open URL, bookmark, or history entry + O open URL, bookmark, history entry in a new tab + b open bookmark + B open bookmark in a new tab Using find: @@ -90,7 +90,7 @@ Using marks: Additional advanced browsing commands: - ]], [[ Follow the link labeled 'next' or '>' ('previous' or '<') + ]], [[ follow the link labeled 'next' or '>' ('previous' or '<') - helpful for browsing paginated sites open multiple links in a new tab gi focus the first (or n-th) text input box on the page. Use to cycle through options. From 11cbf1755f5a3bbc63fd4251c4462bbad7b18a08 Mon Sep 17 00:00:00 2001 From: gitressa <3491208+gitressa@users.noreply.github.com> Date: Wed, 17 Jan 2024 10:48:04 +0100 Subject: [PATCH 2/3] Add show shortcuts for visible links README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 60622e3a9..81106c9c6 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,8 @@ Navigating the current page: G scroll to bottom of the page d scroll down half a page u scroll up half a page - f show links and open in the current tab - F show links and open in a new tab + f show shortcuts to visible links and open in the current tab + F show shortcuts to visible links and open in a new tab r reload gs view source i enter insert mode -- all commands will be ignored until you hit Esc to exit From 33ffc3d2349ead290c0483acebdf258a9a6f77ce Mon Sep 17 00:00:00 2001 From: gitressa <3491208+gitressa@users.noreply.github.com> Date: Sat, 23 Mar 2024 12:35:58 +0100 Subject: [PATCH 3/3] Update commands.js --- background_scripts/commands.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/background_scripts/commands.js b/background_scripts/commands.js index 46916cc81..3cc7badca 100644 --- a/background_scripts/commands.js +++ b/background_scripts/commands.js @@ -498,8 +498,8 @@ const commandDescriptions = { focusInput: ["Focus the first text input on the page"], - "LinkHints.activateMode": ["Open a link in the current tab"], - "LinkHints.activateModeToOpenInNewTab": ["Open a link in a new tab"], + "LinkHints.activateMode": ["Show shortcuts to visible links and open in the current tab"], + "LinkHints.activateModeToOpenInNewTab": ["Show shortcuts to visible links and open in a new tab"], "LinkHints.activateModeToOpenInNewForegroundTab": ["Open a link in a new tab & switch to it"], "LinkHints.activateModeWithQueue": ["Open multiple links in a new tab", { noRepeat: true }], "LinkHints.activateModeToOpenIncognito": ["Open a link in incognito window"],