Skip to content

Instantly share code, notes, and snippets.

@958
Created April 28, 2011 05:12
Show Gist options
  • Save 958/945841 to your computer and use it in GitHub Desktop.
Save 958/945841 to your computer and use it in GitHub Desktop.
[keysnail] vimperator の C-^ みたいな
if (typeof gBrowser !== 'undefined' && gBrowser.tabContainer) {
let prev = gBrowser.tabContainer.selectedIndex;
let cur = prev;
gBrowser.tabContainer.addEventListener("TabSelect", function(){
prev = currentSelectedTabIndex;
cur = gBrowser.tabContainer.selectedIndex;
}, false);
ext.add("toggle-selected-tab", function () gBrowser.tabContainer.selectedIndex = prev, '選択タブをトグルする');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment