1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-08 07:04:14 +01:00

Frob some fnords.

This commit is contained in:
Kris Maglione
2008-10-02 06:42:42 +00:00
parent 0a905986d9
commit 76b6c530b1
9 changed files with 187 additions and 176 deletions

View File

@@ -419,15 +419,14 @@ liberator.Mappings = function () //{{{
if (output[i]));
XML.prettyPrinting = false;
let list = <table>
{[
[
{
liberator.template.map(_maps, function (map)
liberator.template.map(map.names, function (name)
<tr>
<td>{modeSign} {name}</td>
<td>{map.noremap ? "*" : " "}</td>
<td>{map.rhs || "function () { ... }"}</td>
</tr>
for each (name in map.names)].reduce(liberator.buffer.template.add)
for each (map in _maps)].reduce(liberator.buffer.template.add)
</tr>))
}
</table>