1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-14 06:35:46 +01:00

Kill :bwipeout, :bunload. Change the semantics of :tabc and :bd: the former operates on visible tabs, the latter on all tabs. Bang enables regexp matching against title and URL, otherwise site-filter matching is used.

This commit is contained in:
Kris Maglione
2011-10-03 23:48:38 -04:00
parent 1afa56335d
commit 6ed8983b11
5 changed files with 109 additions and 72 deletions

View File

@@ -1098,7 +1098,7 @@ var Util = Module("Util", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakReference]),
expr = String.replace(expr, /\\(.)/, function (m, m1) {
if (m1 === "c")
flags = flags.replace(/i/g, "") + "i";
else if (m === "C")
else if (m1 === "C")
flags = flags.replace(/i/g, "");
else
return m;