F does not always open a new tab
#165
Answered
by
suveshmoza
imnotpoz
asked this question in
Issue triage
using not sure what causes this but it happens on github most often |
Answered by
suveshmoza
Jun 20, 2026
Replies: 2 comments 7 replies
|
Thanks for the report, do you have a specific example where this happens? Or is it inconsistent? |
3 replies
|
@imnotpoz For now, you can add these lines to your Glide config. This should give you the correct glide.keymaps.set('normal', 'F', () => {
glide.hints.show({
selector: '[href]',
async action({ content }) {
const href = await content.execute((target) => (target as HTMLAnchorElement).href);
await browser.tabs.create({ url: href, active: false });
},
});
}); |
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Try this