mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-04-29 13:04:04 +02:00
Whitespace fixes.
This commit is contained in:
@@ -843,7 +843,6 @@ function Hints() //{{{
|
||||
validator: Option.validateCompleter
|
||||
});
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////}}}
|
||||
////////////////////// MAPPINGS ////////////////////////////////////////////////
|
||||
/////////////////////////////////////////////////////////////////////////////{{{
|
||||
|
||||
@@ -463,7 +463,6 @@ function IO() //{{{
|
||||
completion.addUrlCompleter("f", "Local files", completion.file);
|
||||
});
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////}}}
|
||||
////////////////////// PUBLIC SECTION //////////////////////////////////////////
|
||||
/////////////////////////////////////////////////////////////////////////////{{{
|
||||
|
||||
@@ -53,7 +53,7 @@ function CommandLine() //{{{
|
||||
autocommands.trigger("Sanitize", {});
|
||||
}, window);
|
||||
|
||||
var messageHistory = { // {{{
|
||||
var messageHistory = { //{{{
|
||||
_messages: [],
|
||||
get messages()
|
||||
{
|
||||
@@ -83,7 +83,7 @@ function CommandLine() //{{{
|
||||
|
||||
this._messages.push(message);
|
||||
}
|
||||
}; // }}}
|
||||
}; //}}}
|
||||
var lastMowOutput = null;
|
||||
|
||||
var silent = false;
|
||||
@@ -97,7 +97,7 @@ function CommandLine() //{{{
|
||||
* @param {HTMLInputElement} inputField
|
||||
* @param {string} mode The mode for which we need history.
|
||||
*/
|
||||
function History(inputField, mode) // {{{
|
||||
function History(inputField, mode) //{{{
|
||||
{
|
||||
if (!(this instanceof arguments.callee))
|
||||
return new arguments.callee(inputField, mode);
|
||||
@@ -220,14 +220,14 @@ function CommandLine() //{{{
|
||||
}
|
||||
}
|
||||
}
|
||||
}; // }}}
|
||||
}; //}}}
|
||||
|
||||
/**
|
||||
* A class for tab completions on an input field.
|
||||
*
|
||||
* @param {Object} input
|
||||
*/
|
||||
function Completions(input) // {{{
|
||||
function Completions(input) //{{{
|
||||
{
|
||||
if (!(this instanceof arguments.callee))
|
||||
return new arguments.callee(input);
|
||||
@@ -511,7 +511,7 @@ function CommandLine() //{{{
|
||||
if (this.items.length == 0)
|
||||
liberator.beep();
|
||||
}
|
||||
}; // }}}
|
||||
}; //}}}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////}}}
|
||||
////////////////////// TIMERS //////////////////////////////////////////////////
|
||||
|
||||
@@ -32,7 +32,6 @@ function Addressbook() //{{{
|
||||
////////////////////// OPTIONS /////////////////////////////////////////////////
|
||||
/////////////////////////////////////////////////////////////////////////////{{{
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////}}}
|
||||
////////////////////// MAPPINGS ////////////////////////////////////////////////
|
||||
/////////////////////////////////////////////////////////////////////////////{{{
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
// given in the LICENSE.txt file included with this file.
|
||||
|
||||
|
||||
function Library() // {{{
|
||||
function Library() //{{{
|
||||
{
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
////////////////////// PRIVATE SECTION /////////////////////////////////////////
|
||||
@@ -73,6 +73,6 @@ function Library() // {{{
|
||||
|
||||
};
|
||||
//}}}
|
||||
} // }}}
|
||||
} //}}}
|
||||
|
||||
// vim: set fdm=marker sw=4 ts=4 et:
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
// given in the LICENSE.txt file included with this file.
|
||||
|
||||
|
||||
function Player() // {{{
|
||||
function Player() //{{{
|
||||
{
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
////////////////////// PRIVATE SECTION /////////////////////////////////////////
|
||||
@@ -799,6 +799,6 @@ function Player() // {{{
|
||||
|
||||
};
|
||||
//}}}
|
||||
} // }}}
|
||||
} //}}}
|
||||
|
||||
// vim: set fdm=marker sw=4 ts=4 et:
|
||||
|
||||
Reference in New Issue
Block a user