mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 08:08:00 +01:00
whitespace/formatting fixes
This commit is contained in:
@@ -857,10 +857,12 @@ function Completion() //{{{
|
|||||||
let filter = key + (string || "");
|
let filter = key + (string || "");
|
||||||
for (let [,obj] in Iterator(objects))
|
for (let [,obj] in Iterator(objects))
|
||||||
{
|
{
|
||||||
try {
|
try
|
||||||
|
{
|
||||||
this.context.fork(obj[1], top[OFFSET], this, fill,
|
this.context.fork(obj[1], top[OFFSET], this, fill,
|
||||||
obj[0], obj[1], compl, compl != orig, filter, last, key.length);
|
obj[0], obj[1], compl, compl != orig, filter, last, key.length);
|
||||||
} catch(e) { liberator.reportError(e) }
|
}
|
||||||
|
catch (e) { liberator.reportError(e) }
|
||||||
}
|
}
|
||||||
if (orig)
|
if (orig)
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -395,9 +395,11 @@ let (array = util.Array)
|
|||||||
}
|
}
|
||||||
|
|
||||||
const styles = storage.newObject("styles", Styles, false);
|
const styles = storage.newObject("styles", Styles, false);
|
||||||
try {
|
try
|
||||||
|
{
|
||||||
const highlight = storage.newObject("highlight", Highlights, false);
|
const highlight = storage.newObject("highlight", Highlights, false);
|
||||||
} catch(e) { liberator.reportError(e) }
|
}
|
||||||
|
catch (e) { liberator.reportError(e) }
|
||||||
|
|
||||||
liberator.registerObserver("load_commands", function ()
|
liberator.registerObserver("load_commands", function ()
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user