diff --git a/content/io.js b/content/io.js index 74eb4d0f..c32090dc 100644 --- a/content/io.js +++ b/content/io.js @@ -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()) + "
"; + + liberator.echo(command + liberator.util.escapeHTML(output)); }); /////////////////////////////////////////////////////////////////////////////}}}