From 12be16043360960961e24ddbfdd8ce7aa0ab4568 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Tue, 26 Aug 2008 02:27:05 +0000 Subject: [PATCH] prefix the invoked Ex command to the MOW output of :! --- content/io.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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)); }); /////////////////////////////////////////////////////////////////////////////}}}