Page 1 of 1

Close Tabs - another option

Posted: 20 Mar 2014 13:58
by aurumdigitus
Right clicking a Tab produces three options at the bottom of the Context menu for doing so.

Borrowing from Firefox would like to see an additional choice: Close Tabs to the Right. As the tabs can repositioned (as in XY) you can move and close several unwanted sites simultaneously. When using the browser find this very useful and think it would be in XY also.

Re: Close Tabs - another option

Posted: 20 Mar 2014 14:18
by LittleBiG
highend has already created a script for this:

Code: Select all

"Close Right Tabs|:del"
  $numTabs = tab("get", "c");
  $curTabID = tab("get");
  $maxTabs = $numTabs - $curTabID;
  $i = 1;
  while($i <= $maxTabs) {
    tab("close", 1, $curTabID + 1);
    $i++;
  }
Original topic: http://www.xyplorer.com/xyfc/viewtopic.php?f=5&t=8630

Re: Close Tabs - another option

Posted: 20 Mar 2014 14:53
by aurumdigitus
Wow :!: Deus ex machina.

On this one it never even occurred for me to search the Forum.

Another code segment to put into the XY script toolkit. Thanks for pointing the way.