// // Copyright (c) 2013 Stefan Bolte // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License along // with this program; if not, write to the Free Software Foundation, Inc., // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. // // /**/ var defaultConfig = { //DEFAULT_CONFIG }; var signal; var removeDuplicates = function() { var uris = []; for (var i=tabs.length-1; i>=0; --i) { var uri = tabs.nth(i).uri; if (uris.fastIndexOf(uri) == -1) uris.push(uri); else execute((i+1) + "close_tab"); } }; var onNavigation = function(wv, frame, request) { var uri = request.uri; for (var i=tabs.length-1; i>=0; --i) { if (tabs.nth(i).uri == uri && i != wv.number) { /* defer execute, otherwise some other navigation callbacks will * fail */ timer.start(10, function() { execute((i+1) + "focus_tab"); if (/^\s*$/.test(wv.uri)) execute((wv.number + 1) + "close"); return false; }); return true; } } return false; }; var toggleAutoFocus = function() { if (signal.toggle()) io.notify("unique_tabs: autofocus enabled"); else io.notify("unique_tabs: autofocus disabled"); }; var uniqueTabs = { defaultConfig : defaultConfig, init : function(c) { if (c.shortcutRemoveDuplicates || c.commandRemoveDuplicates) { bind(c.shortcutRemoveDuplicates, removeDuplicates, c.commandRemoveDuplicates); } if (c.shortcutToggleAutoFocus || c.commandToggleAutoFocus) { bind(c.shortcutToggleAutoFocus, toggleAutoFocus, c.commandToggleAutoFocus); } signal = new Signal("navigation", onNavigation); if (c.autoFocus) signal.connect(); return true; }, end : function() { unbind(removeDuplicates); unbind(toggleAutoFocus); signal.disconnect(); return true; } }; return uniqueTabs; // vim:set ft=javascript: