mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-08 12:24:13 +01:00
Formatting fixes.
This commit is contained in:
@@ -395,7 +395,7 @@ function Styles(name, store)
|
||||
if (matches.length == 0)
|
||||
return;
|
||||
|
||||
for (let [,sheet] in Iterator(matches.reverse()))
|
||||
for (let [, sheet] in Iterator(matches.reverse()))
|
||||
{
|
||||
if (name)
|
||||
{
|
||||
@@ -509,7 +509,7 @@ let (array = util.Array)
|
||||
catch (e) {}
|
||||
context.fork("others", 0, this, function (context) {
|
||||
context.title = ["Site"];
|
||||
context.completions = [[s, ""] for ([,s] in Iterator(styles.sites))];
|
||||
context.completions = [[s, ""] for ([, s] in Iterator(styles.sites))];
|
||||
});
|
||||
}
|
||||
});
|
||||
@@ -729,7 +729,7 @@ liberator.registerObserver("load_completion", function () {
|
||||
});
|
||||
|
||||
context.title = ["Color Scheme", "Runtime Path"];
|
||||
context.completions = [[c.leafName.replace(/\.vimp$/, ""), c.parent.path] for ([,c] in Iterator(colors))]
|
||||
context.completions = [[c.leafName.replace(/\.vimp$/, ""), c.parent.path] for ([, c] in Iterator(colors))]
|
||||
};
|
||||
|
||||
// FIXME: extract from :highlight
|
||||
|
||||
Reference in New Issue
Block a user