summaryrefslogtreecommitdiff
path: root/common/content/tabs.js
diff options
context:
space:
mode:
authorKris Maglione <maglione.k@gmail.com>2010-09-28 10:39:40 -0400
committerKris Maglione <maglione.k@gmail.com>2010-09-28 10:39:40 -0400
commit017258955b70a3e72f19c34482c94cd3624d0990 (patch)
tree4dd7a59f4ec437d8a1e21842cd940fede0f709c0 /common/content/tabs.js
parentd6aa3d5ef0c066a26d3f3d65ff3bbe4dda57bbd6 (diff)
downloadpentadactyl-017258955b70a3e72f19c34482c94cd3624d0990.tar.gz
Add bookmarks, diverted, links to 'activate'.
Diffstat (limited to 'common/content/tabs.js')
-rw-r--r--common/content/tabs.js35
1 files changed, 24 insertions, 11 deletions
diff --git a/common/content/tabs.js b/common/content/tabs.js
index 86d31641..98cd0335 100644
--- a/common/content/tabs.js
+++ b/common/content/tabs.js
@@ -1014,20 +1014,33 @@ const Tabs = Module("tabs", {
});
if (config.hasTabbrowser) {
+ let activateGroups = [
+ ["addons", ":addo[ns] command"],
+ ["bookmarks", "Tabs loaded from bookmarks", "loadBookmarksInBackground"],
+ ["diverted", "Links with targets set to new tabs", "loadDivertedInBackground"],
+ ["downloads", ":downl[oads] command"],
+ ["extoptions", ":exto[ptions] command"],
+ ["help", ":h[elp] command"],
+ ["homepage", "gH mapping"],
+ ["links", "Middle- or Control-clicked links", "loadInBackground"],
+ ["quickmark", "go and gn mappings"],
+ ["tabopen", ":tabopen[!] command"],
+ ["paste", "P and gP mappings"]
+ ];
options.add(["activate", "act"],
"Define when tabs are automatically activated",
- "stringlist", "addons,downloads,extoptions,help,homepage,quickmark,tabopen,paste",
+ "stringlist", [g[0] for (g in values(activateGroups)) if (!g[2] || !options.getPref("browser.tabs." + g[2]))].join(","),
{
- completer: function (context) [
- ["addons", ":addo[ns] command"],
- ["downloads", ":downl[oads] command"],
- ["extoptions", ":exto[ptions] command"],
- ["help", ":h[elp] command"],
- ["homepage", "gH mapping"],
- ["quickmark", "go and gn mappings"],
- ["tabopen", ":tabopen[!] command"],
- ["paste", "P and gP mappings"]
- ]
+ completer: function (context) activateGroups,
+ setter: function (newValues) {
+ let valueSet = set(newValues);
+ for (let group in values(activateGroups))
+ if (group[2])
+ options.safeSetPref("browser.tabs." + group[2],
+ !(valueSet["all"] || valueSet[group[0]]),
+ "See the 'activate' option");
+ return newValues;
+ }
});
options.add(["newtab"],