diff options
author | Kris Maglione <maglione.k@gmail.com> | 2008-12-07 14:42:36 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2008-12-07 14:42:36 -0500 |
commit | ad0bc34c9003aa1bf6e133c3319f64a8997ad391 (patch) | |
tree | e2ef28fae88acfc9fc389369f4825b2c94ce4eb6 | |
parent | bdc8b4794c174844f14b4b1def7fa729be7ef13c (diff) | |
download | pentadactyl-ad0bc34c9003aa1bf6e133c3319f64a8997ad391.tar.gz |
Fix :run. Bad macro. :( No more commits until Ive had proper sleep.
-rw-r--r-- | common/content/io.js | 2 |
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", {}); }, |