Options to open "recent location" in new tabs

Features wanted...
Post Reply
terrytw
Posts: 121
Joined: 03 Mar 2023 03:37

Options to open "recent location" in new tabs

Post by terrytw »

Right now recent location always opens at current tab. I know I can shift click on it, but it is annoying to do so.

Is it possible to have an option that defaults to open recent locations in new tab?

Much appreciated!

eil
Posts: 1864
Joined: 13 Jan 2011 19:44

Re: Options to open "recent location" in new tabs

Post by eil »

I's wish All the situations that require "Shift+click for open in new tab" could work through Right-hold + Left-click.
Win 7 SP1 x64 100% 1366x768|1900x1080

admin
Site Admin
Posts: 66093
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Options to open "recent location" in new tabs

Post by admin »

The first is not planned, the latter not possible.

jupe
Posts: 3446
Joined: 20 Oct 2017 21:14
Location: Win10 22H2 120dpi

Re: Options to open "recent location" in new tabs

Post by jupe »

I assume you access Recent Locations from the toolbar button, if so, you could replace it with a user button with a script to do what you want, I can supply a script if you are interested.

terrytw
Posts: 121
Joined: 03 Mar 2023 03:37

Re: Options to open "recent location" in new tabs

Post by terrytw »

jupe wrote: 15 Jun 2024 01:42 I assume you access Recent Locations from the toolbar button, if so, you could replace it with a user button with a script to do what you want, I can supply a script if you are interested.
That sounds fantastic! So kind of you :biggrin:

jupe
Posts: 3446
Joined: 20 Oct 2017 21:14
Location: Win10 22H2 120dpi

Re: Options to open "recent location" in new tabs

Post by jupe »

Something like this is the bare bones:

Code: Select all

$f = popupmenu(regexreplace(<get list_recentlocations>, "^(.+?)$", "$1|$1|$1"),,, 2, 32,, <crlf>, "|"); if ($f) { tab("new", $f); }

terrytw
Posts: 121
Joined: 03 Mar 2023 03:37

Re: Options to open "recent location" in new tabs

Post by terrytw »

jupe wrote: 15 Jun 2024 02:21 Something like this is the bare bones:

Code: Select all

$f = popupmenu(regexreplace(gettoken(<get list_recentlocations>, 2, <crlf>,, 2), "^(.+?)$", "$1|$1|$1"), 6:=<crlf>, 7:="|"); if ($f) { tab("new", $f); }
Amazing! Works like a charm! Thank you so much!

Also @admin, I love the new icons, subtle but comfortable improvements over the old ones.

admin
Site Admin
Posts: 66093
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Options to open "recent location" in new tabs

Post by admin »

terrytw wrote: 15 Jun 2024 02:40 Also @admin, I love the new icons, subtle but comfortable improvements over the old ones.
:D :beer:

Post Reply