mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-04 10:35:46 +01:00
Fix #212
This commit is contained in:
@@ -287,8 +287,15 @@ function IO() //{{{
|
|||||||
lines = util.Array.flatten(lines);
|
lines = util.Array.flatten(lines);
|
||||||
|
|
||||||
// source a user .vimperatorrc file
|
// source a user .vimperatorrc file
|
||||||
lines.unshift('"' + liberator.version);
|
lines.unshift('"' + liberator.version + "\n");
|
||||||
lines.push("\nsource! " + filename + ".local");
|
|
||||||
|
// 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:");
|
lines.push("\n\" vim: set ft=vimperator:");
|
||||||
|
|
||||||
try
|
try
|
||||||
|
|||||||
@@ -488,7 +488,7 @@ function Styles(name, store, serial)
|
|||||||
return namespace + "@-moz-document " + selectors + "{\n" + css + "\n}\n";
|
return namespace + "@-moz-document " + selectors + "{\n" + css + "\n}\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let (array = utiltte.Array)
|
let (array = util.Array)
|
||||||
{
|
{
|
||||||
Styles.prototype = {
|
Styles.prototype = {
|
||||||
get sites() array([v.sites for ([k, v] in this.userSheets)]).flatten().uniq(),
|
get sites() array([v.sites for ([k, v] in this.userSheets)]).flatten().uniq(),
|
||||||
|
|||||||
Reference in New Issue
Block a user