From 2b5067dc836b7298513f540e3c2684be1cb1373f Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sat, 3 Oct 2009 01:37:21 +1000 Subject: [PATCH] Fix :!! message window command line string. The ! should be expanded to the previous command string. --- common/content/io.js | 1 + 1 file changed, 1 insertion(+) diff --git a/common/content/io.js b/common/content/io.js index 724d0f7b..6f94610a 100644 --- a/common/content/io.js +++ b/common/content/io.js @@ -374,6 +374,7 @@ function IO() //{{{ let output = io.system(arg); + commandline.command = "!" + arg; commandline.echo(template.commandOutput({output})); autocommands.trigger("ShellCmdPost", {});