Close to the left / right options in tab popup menu

Features wanted...
Post Reply
arkid
Posts: 54
Joined: 29 May 2015 11:53

Close to the left / right options in tab popup menu

Post by arkid »

A very simple but highly useful request. I like I'm sure a lot of other people over time using the app during the day end up with a fair few tabs on screen. Having two new "Close all tabs to the left" and "Close all tabs to the right" options on the context menu would be super useful sometimes.

I hope you can apply this, it would seem to be a pretty easy task.

RalphM
Posts: 1935
Joined: 27 Jan 2005 23:38
Location: Cairns, Australia

Re: Close to the left / right options in tab popup menu

Post by RalphM »

Have you had a look at locking tab locations or zones (which would allow you to close all others at the end of the day) or using tabsets to recreate your favourite tab session from a saved state at any time.
Every since I've set up my five or six different tabsets for the different file managing needs of my life, I've hardly closed any tabs at all but rather reload whichever tabset I'm about to use next into the current pane.
Ralph :)
(OS: W11 22H2 Home x64 - XY: Current beta - Office 2019 32-bit - Display: 1920x1080 @ 125%)

highend
Posts: 13327
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Close to the left / right options in tab popup menu

Post by highend »

Scripting would be a temporary option as well (when used in a user defined command with a keyboard shortcut assigned)

Code: Select all

"CloseLeftTabs"
    $curTabID = tab("get");
    while($i++ < $curTabID - 1) {
        tab("close", 0, 1);
    }

"CloseRightTabs"
    $numTabs = tab("get", "c");
    $curTabID = tab("get");
    $maxTabs = $numTabs - $curTabID;
    while($i++ < $maxTabs) {
        tab("close", 0, $curTabID + 1);
    }
One of my scripts helped you out? Please donate via Paypal

arkid
Posts: 54
Joined: 29 May 2015 11:53

Re: Close to the left / right options in tab popup menu

Post by arkid »

A plus one here, also with the app had this built in.

RalphM
Posts: 1935
Joined: 27 Jan 2005 23:38
Location: Cairns, Australia

Re: Close to the left / right options in tab popup menu

Post by RalphM »

Two months later you give your own wish a +1?
Ralph :)
(OS: W11 22H2 Home x64 - XY: Current beta - Office 2019 32-bit - Display: 1920x1080 @ 125%)

arkid
Posts: 54
Joined: 29 May 2015 11:53

Re: Close to the left / right options in tab popup menu

Post by arkid »

Haha yes that was accidental but it shows you how much I want this. Its so easy to end up with 101 tabs in this program.

PlorerXY6
Posts: 60
Joined: 13 Oct 2022 19:51

Re: Close to the left / right options in tab popup menu

Post by PlorerXY6 »

Was also hoping for this outside of a script aka built in!

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

Re: Close to the left / right options in tab popup menu

Post by admin »

Next beta: "Close All Tabs to the Right"

Post Reply