1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-07 22:05:47 +01:00

prefix the invoked Ex command to the MOW output of :!

This commit is contained in:
Doug Kearns
2008-08-26 02:27:05 +00:00
parent ef84a3866f
commit 12be160433

View File

@@ -195,8 +195,9 @@ liberator.IO = function () //{{{
lastRunCommand = args;
var output = liberator.io.system(args);
if (output)
liberator.echo(liberator.util.escapeHTML(output));
var command = ":" + liberator.util.escapeHTML(liberator.commandline.getCommand()) + "<br/>";
liberator.echo(command + liberator.util.escapeHTML(output));
});
/////////////////////////////////////////////////////////////////////////////}}}