mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-01 17:42:25 +01:00
some trivial formatting fixes
This commit is contained in:
@@ -326,9 +326,14 @@ const vimperator = (function() //{{{
|
||||
for (var i in object)
|
||||
{
|
||||
var value;
|
||||
try {
|
||||
try
|
||||
{
|
||||
var value = object[i];
|
||||
} catch (e) { value = '' }
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
value = '';
|
||||
}
|
||||
|
||||
string += i + ': ' + value + '\n';
|
||||
}
|
||||
@@ -594,7 +599,7 @@ const vimperator = (function() //{{{
|
||||
vimperator.source(file.path, false);
|
||||
});
|
||||
}
|
||||
catch(e)
|
||||
catch (e)
|
||||
{
|
||||
// thrown if directory does not exist
|
||||
//vimperator.log("Error sourcing plugin directory: " + e);
|
||||
|
||||
Reference in New Issue
Block a user