1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-15 00:54:12 +01:00
This commit is contained in:
Kris Maglione
2009-04-15 18:30:30 -04:00
parent 3d8c17574a
commit 8cd587b496
2 changed files with 10 additions and 3 deletions

View File

@@ -287,8 +287,15 @@ function IO() //{{{
lines = util.Array.flatten(lines);
// source a user .vimperatorrc file
lines.unshift('"' + liberator.version);
lines.push("\nsource! " + filename + ".local");
lines.unshift('"' + liberator.version + "\n");
// For the record, I think that adding this line is absurd. --Kris
lines.push(commands.commandToString({
command: "source",
bang: true,
arguments: [filename + ".local"]
}));
lines.push("\n\" vim: set ft=vimperator:");
try

View File

@@ -488,7 +488,7 @@ function Styles(name, store, serial)
return namespace + "@-moz-document " + selectors + "{\n" + css + "\n}\n";
}
}
let (array = utiltte.Array)
let (array = util.Array)
{
Styles.prototype = {
get sites() array([v.sites for ([k, v] in this.userSheets)]).flatten().uniq(),