mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 11:47:58 +01:00
added :time command, please use when writing new functions and you think they are slow
This commit is contained in:
@@ -1298,6 +1298,77 @@ function Commands() //{{{
|
|||||||
short_help: "Switch to the first tab"
|
short_help: "Switch to the first tab"
|
||||||
}
|
}
|
||||||
));
|
));
|
||||||
|
addDefaultCommand(new Command(["time"],
|
||||||
|
function(args, special, count)
|
||||||
|
{
|
||||||
|
if (!count || count < 1)
|
||||||
|
count = 1;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (count > 1)
|
||||||
|
{
|
||||||
|
var i = count;
|
||||||
|
var before_time = Date.now();
|
||||||
|
|
||||||
|
if (args && args[0] == ":")
|
||||||
|
while (i--)
|
||||||
|
vimperator.execute(args);
|
||||||
|
else
|
||||||
|
while (i--)
|
||||||
|
eval(args);
|
||||||
|
|
||||||
|
var after_time = Date.now();
|
||||||
|
|
||||||
|
if ((after_time - before_time) / count >= 100)
|
||||||
|
var each = " Each time: <span style=\"color: green\">" +
|
||||||
|
((after_time - before_time) / 1000.0 / count) +
|
||||||
|
"</span> sec</br>";
|
||||||
|
else
|
||||||
|
var each = " Each time: <span style=\"color: green\">" +
|
||||||
|
((after_time - before_time) / count) +
|
||||||
|
"</span> msec</br>";
|
||||||
|
|
||||||
|
if (after_time - before_time >= 100)
|
||||||
|
var total = " Total time: <span style=\"color: red\">" +
|
||||||
|
((after_time - before_time) / 1000.0) +
|
||||||
|
"</span> sec</pre>";
|
||||||
|
else
|
||||||
|
var total = " Total time: <span style=\"color: red\">" +
|
||||||
|
(after_time - before_time) + "</span> msec</pre>";
|
||||||
|
|
||||||
|
|
||||||
|
vimperator.echo("<pre><span style=\"color: magenta; font-weight: bold\">Code execution summary</span>:<br/>" +
|
||||||
|
" Executed: <span style=\"color: green\">" + count + "</span> times<br/>" + each + total);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var before_time = Date.now();
|
||||||
|
if (args && args[0] == ":")
|
||||||
|
vimperator.execute(args);
|
||||||
|
else
|
||||||
|
eval(args);
|
||||||
|
var after_time = Date.now();
|
||||||
|
|
||||||
|
if (after_time - before_time >= 100)
|
||||||
|
vimperator.echo("Total time: " + ((after_time - before_time) / 1000.0) + " sec");
|
||||||
|
else
|
||||||
|
vimperator.echo("Total time: " + (after_time - before_time) + " msec");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (e)
|
||||||
|
{
|
||||||
|
vimperator.echoerr(e);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
usage: ["{count}time {code|:command}"],
|
||||||
|
short_help: "Profile a piece of code or a command",
|
||||||
|
help: "Runs {code} {count} times (default 1) and returns the elapsed time. " +
|
||||||
|
"{code} is always passed to JavaScript's eval(), which might be slow, so take the results with a grain of salt. " +
|
||||||
|
"If {code} starts with a :, it is executed as a vimperator command"
|
||||||
|
}
|
||||||
|
));
|
||||||
addDefaultCommand(new Command(["u[ndo]"],
|
addDefaultCommand(new Command(["u[ndo]"],
|
||||||
function(args, special, count) { if (count < 1) count = 1; undoCloseTab(count-1); },
|
function(args, special, count) { if (count < 1) count = 1; undoCloseTab(count-1); },
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -509,8 +509,9 @@ function Events() //{{{
|
|||||||
default:
|
default:
|
||||||
// clear any selection made
|
// clear any selection made
|
||||||
var selection = window.content.getSelection();
|
var selection = window.content.getSelection();
|
||||||
if (selection)
|
try { // a simple if (selection) does not work
|
||||||
selection.collapseToStart();
|
selection.collapseToStart();
|
||||||
|
} catch (e) { }
|
||||||
vimperator.commandline.clear();
|
vimperator.commandline.clear();
|
||||||
|
|
||||||
vimperator.modes.reset();
|
vimperator.modes.reset();
|
||||||
|
|||||||
@@ -87,8 +87,9 @@ vimperator.modes = (function()
|
|||||||
{
|
{
|
||||||
// clear any selection made
|
// clear any selection made
|
||||||
var selection = window.content.getSelection();
|
var selection = window.content.getSelection();
|
||||||
if (selection)
|
try { // a simple if (selection) does not work
|
||||||
selection.collapseToStart();
|
selection.collapseToStart();
|
||||||
|
} catch (e) { }
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
vimperator.editor.unselectText();
|
vimperator.editor.unselectText();
|
||||||
|
|||||||
Reference in New Issue
Block a user