Created
April 28, 2011 05:12
-
-
Save 958/945841 to your computer and use it in GitHub Desktop.
[keysnail] vimperator の C-^ みたいな
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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