diff options
Diffstat (limited to 'common/content/io.js')
-rw-r--r-- | common/content/io.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/content/io.js b/common/content/io.js index 11ae8c47..a28d52b0 100644 --- a/common/content/io.js +++ b/common/content/io.js @@ -219,7 +219,7 @@ function IO() //{{{ if (isAbsolutePath(args)) { if (io.setCurrentDirectory(args)) - liberator.echo(io.getCurrentDirectory().path); + liberator.echomsg(io.getCurrentDirectory().path); } else { @@ -233,7 +233,7 @@ function IO() //{{{ if (dir.exists() && dir.isDirectory() && dir.isReadable()) { io.setCurrentDirectory(dir.path); - liberator.echo(io.getCurrentDirectory().path); + liberator.echomsg(io.getCurrentDirectory().path); found = true; break; } @@ -260,7 +260,7 @@ function IO() //{{{ commands.add(["pw[d]"], "Print the current directory name", - function () { liberator.echo(io.getCurrentDirectory().path); }, + function () { liberator.echomsg(io.getCurrentDirectory().path); }, { argCount: "0" }); // "mkv[imperatorrc]" or "mkm[uttatorrc]" |