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.
Close to the left / right options in tab popup menu
-
RalphM
- Posts: 2088
- Joined: 27 Jan 2005 23:38
- Location: Cairns, Australia
Re: Close to the left / right options in tab popup menu
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.
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 25H2 Home x64 - XY: Current x64 beta - Office 2024 64-bit - Display: 1920x1080 @ 125%)
(OS: W11 25H2 Home x64 - XY: Current x64 beta - Office 2024 64-bit - Display: 1920x1080 @ 125%)
-
highend
- Posts: 14940
- Joined: 06 Feb 2011 00:33
- Location: Win Server 2022 @100%
Re: Close to the left / right options in tab popup menu
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
A plus one here, also with the app had this built in.
-
RalphM
- Posts: 2088
- Joined: 27 Jan 2005 23:38
- Location: Cairns, Australia
Re: Close to the left / right options in tab popup menu
Two months later you give your own wish a +1?
Ralph 
(OS: W11 25H2 Home x64 - XY: Current x64 beta - Office 2024 64-bit - Display: 1920x1080 @ 125%)
(OS: W11 25H2 Home x64 - XY: Current x64 beta - Office 2024 64-bit - Display: 1920x1080 @ 125%)
-
arkid
- Posts: 54
- Joined: 29 May 2015 11:53
Re: Close to the left / right options in tab popup menu
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: 83
- Joined: 13 Oct 2022 19:51
Re: Close to the left / right options in tab popup menu
Was also hoping for this outside of a script aka built in!
-
admin
- Site Admin
- Posts: 66238
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: Close to the left / right options in tab popup menu
Next beta: "Close All Tabs to the Right"
FAQ | XY News RSS | XY X
-
Raf
- Posts: 145
- Joined: 31 Jul 2024 15:34
Re: Close to the left / right options in tab popup menu
So, 2 years have passed. How about adding "Close to the left"?
XYplorer Beta Club