mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 14:37:58 +01:00
whitespace fixes
This commit is contained in:
@@ -171,7 +171,6 @@ function AutoCommands() //{{{
|
||||
completion.setFunctionCompleter(autocommands.get, [function () config.autocommands]);
|
||||
});
|
||||
|
||||
|
||||
return {
|
||||
|
||||
__iterator__: function () util.Array.iterator(store),
|
||||
|
||||
@@ -120,9 +120,9 @@ function IO() //{{{
|
||||
if (path.exists() && path.normalize)
|
||||
path.normalize();
|
||||
}
|
||||
catch(e)
|
||||
catch (e)
|
||||
{
|
||||
return { exists: function () false, __noSuchMethod__: function () { throw e } };
|
||||
return { exists: function () false, __noSuchMethod__: function () { throw e; } };
|
||||
}
|
||||
return path;
|
||||
}
|
||||
|
||||
@@ -98,7 +98,6 @@ const liberator = (function () //{{{
|
||||
"Allow reading of an RC file in the current directory",
|
||||
"boolean", false);
|
||||
|
||||
|
||||
const groups = {
|
||||
config: {
|
||||
opts: config.guioptions,
|
||||
|
||||
@@ -40,7 +40,7 @@ if (liberator.options.getPref("extensions.vimperator.commandline_cmd_history"))
|
||||
store = liberator.storage["quickmarks"];
|
||||
pref = liberator.options.getPref("extensions.vimperator.quickmarks")
|
||||
.split("\n");
|
||||
while(pref.length > 0)
|
||||
while (pref.length > 0)
|
||||
store.set(pref.shift(), pref.shift());
|
||||
|
||||
liberator.options.resetPref("extensions.vimperator.commandline_cmd_history");
|
||||
|
||||
Reference in New Issue
Block a user