summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKris Maglione <maglione.k@gmail.com>2008-12-07 14:42:36 -0500
committerKris Maglione <maglione.k@gmail.com>2008-12-07 14:42:36 -0500
commitad0bc34c9003aa1bf6e133c3319f64a8997ad391 (patch)
treee2ef28fae88acfc9fc389369f4825b2c94ce4eb6
parentbdc8b4794c174844f14b4b1def7fa729be7ef13c (diff)
downloadpentadactyl-ad0bc34c9003aa1bf6e133c3319f64a8997ad391.tar.gz
Fix :run. Bad macro. :( No more commits until Ive had proper sleep.
-rw-r--r--common/content/io.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/io.js b/common/content/io.js
index 22156ffb..46735370 100644
--- a/common/content/io.js
+++ b/common/content/io.js
@@ -365,7 +365,7 @@ function IO() //{{{
let output = io.system(args);
- commandline.commandOutput(template.commandOutput(<span highlight="CmdOutput">{output}</span>));
+ commandline.echo(template.commandOutput(<span highlight="CmdOutput">{output}</span>));
autocommands.trigger("ShellCmdPost", {});
},