Page 1 of 1

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

Posted: 13 Mar 2018 14:13
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.

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

Posted: 13 Mar 2018 14:17
by jupe
You can hold Ctrl and click a folder in the tree and it will open in the background, or command ID #1008;

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

Posted: 13 Mar 2018 14:23
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).

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

Posted: 13 Mar 2018 14:32
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>);}

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

Posted: 13 Mar 2018 14:41
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!