1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-03 14:24:13 +01:00

Cleanup ui.js history searching. Fix white-space in :echo/! output.

This commit is contained in:
Kris Maglione
2008-12-06 18:10:22 -05:00
parent 138d8ec8c7
commit 183b48afa1
5 changed files with 172 additions and 195 deletions

View File

@@ -373,10 +373,8 @@ function IO() //{{{
lastRunCommand = args;
let output = io.system(args);
let command = ":" + util.escapeHTML(commandline.getCommand()) + "<br/>";
liberator.echo(template.generic(<span style="white-space: pre">{output}</span>))
liberator.echo(command + util.escapeHTML(output));
commandline.echo(template.generic(<span highlight="CmdOutput">{output}</span>));
autocommands.trigger("ShellCmdPost", {});
},