1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-23 18:45:52 +01:00

Import some fixes from Vimperator. Thanks anekos, teramoko, and stepnem.

This commit is contained in:
Kris Maglione
2010-09-18 03:42:48 -04:00
parent bc7cff0442
commit 508cc08a8f
10 changed files with 36 additions and 28 deletions

View File

@@ -302,10 +302,10 @@ const Highlights = Module("Highlight", {
serialize: function () [
{
command: this.name,
arguments: [k],
literalArg: v
arguments: [v.class],
literalArg: v.value
}
for ([k, v] in Iterator(highlight))
for (v in Iterator(highlight))
if (v.value != v.default)
]
});