[SOLVED] New command "Open Folder in New Background Tab"

Features wanted...
Post Reply
Leito
Posts: 561
Joined: 26 Sep 2016 15:37
Location: Windows 10 1809 x64

[SOLVED] New command "Open Folder in New Background Tab"

Post by Leito »

Can we have a new command to open a folder in a background tab?

Or is there already some way to do this? I haven't found any.
Last edited by Leito on 16 Mar 2018 10:05, edited 1 time in total.

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

Re: New command "Open Folder in New Background Tab"

Post by jupe »

You can hold Ctrl and click a folder in the tree and it will open in the background, or command ID #1008;

Leito
Posts: 561
Joined: 26 Sep 2016 15:37
Location: Windows 10 1809 x64

Re: New command "Open Folder in New Background Tab"

Post by Leito »

jupe wrote:You can hold Ctrl and click a folder in the tree and it will open in the background, or command ID #1008;
Sorry, I should have made it clear : I'm looking to do this with the keyboard from a pane list (not the tree).

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

Re: New command "Open Folder in New Background Tab"

Post by jupe »

something like this should work if you attach it to a keyboard shortcut then:

Code: Select all

if (exists(<curitem>) == 2) {tab("newb", <curitem>);}

Leito
Posts: 561
Joined: 26 Sep 2016 15:37
Location: Windows 10 1809 x64

Re: New command "Open Folder in New Background Tab"

Post by Leito »

jupe wrote:something like this should work if you attach it to a keyboard shortcut then:

Code: Select all

if (exists(<curitem>) == 2) {tab("newb", <curitem>);}
Thanks!

Post Reply