Skip to content

Instantly share code, notes, and snippets.

@958
Created March 28, 2024 11:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 958/ac5f22f999c39591d0d3838ff1e7bea2 to your computer and use it in GitHub Desktop.
Save 958/ac5f22f999c39591d0d3838ff1e7bea2 to your computer and use it in GitHub Desktop.
tablacus explorer select previous tabgroup
let n = await te.Data.Tabgroups.Click - 1;
const nLen = await GetLength(await te.Data.Tabgroups.Data);
if (n < 1) {
n = nLen;
}
if (n >= nLen + 1) {
n = 1;
}
Addons.Tabgroups.Change(n);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment