Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify that f and F show visible links #4407

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 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
Expand All @@ -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:

Expand Down Expand Up @@ -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
<a-f> open multiple links in a new tab
gi focus the first (or n-th) text input box on the page. Use <tab> to cycle through options.
Expand Down
4 changes: 2 additions & 2 deletions background_scripts/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down