1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-01 14:25:55 +01:00

Add missing semicolons.

...let the good times roll.
This commit is contained in:
Doug Kearns
2010-09-22 23:44:04 +10:00
parent 39cbb91490
commit cce6bb653e
16 changed files with 39 additions and 39 deletions

View File

@@ -147,7 +147,7 @@ const Highlights = Module("Highlight", {
*/
selector: function (class_) {
let [, hl, rest] = class_.match(/^(\w*)(.*)/);
let pattern = "[dactyl|highlight~=" + hl + "]"
let pattern = "[dactyl|highlight~=" + hl + "]";
if (this.highlight[hl] && this.highlight[hl].class != class_)
pattern = this.highlight[hl].selector;
return pattern + rest;
@@ -318,7 +318,7 @@ const Highlights = Module("Highlight", {
context.completions = array.flatten(
modules.io.getRuntimeDirectories("colors").map(
function (dir) dir.readDirectory().filter(
function (file) /\.vimp$/.test(file.leafName))))
function (file) /\.vimp$/.test(file.leafName))));
};