DO11: [FR] Can we get a Go TABCLOSE=fromscript,tab option?

lol... so I have most everything working for something that abr had asked for awhile ago... and we can even link tabs from the script thanks to your enhancements and help.

But I can't specify a tab to CLOSE using anything specific to data available in the script to be sure I'm closing the right tab. I want to be able to take the tab handle from Tab.linktab or slavetab, and then use that to close the linked tab. Can you consider this at some point, similar to how we have other FROMSCRIPT arg for the Select command, where we could do something like:

Go TABCLOSE=fromscript,<tab_handle>,<tab_handle>

Go TABCLOSE will close the source tab, so you just have to make sure you assign the correct tab with Command.SetSourceTab.

Weird recursion stuff happens if you try to do that inside and OnCloseTab event handler... if trying to close the tab the tab already being closed is linked to.

Maybe if Go NOSCRIPT worked on TABCLOSE to prevent recrusive OnCloseTab event stuff like it does for OnBeforeFolderChange, OnAfterFolderChange, OnOpenTab and OnOpenLister events?

That would make sense.