diff --git a/chrome/content/vimperator/commands.js b/chrome/content/vimperator/commands.js index dde838d1..613b8ccd 100644 --- a/chrome/content/vimperator/commands.js +++ b/chrome/content/vimperator/commands.js @@ -516,11 +516,11 @@ function Commands() //{{{ vimperator.echo(res); }, { - usage: ["ec[ho] {arg}"], + usage: ["ec[ho] {expr}"], short_help: "Display a string at the bottom of the window", - help: "Useful for showing informational messages.Multiple lines can be separated by \\n.
" + - " can either be a quoted string, or any expression which can be fed to eval() like 4+5. " + - "You can also view the source code of objects and functions if the return value of {arg} is an object or function." + help: "Useful for showing informational messages. Multiple lines can be separated by \\n.
" + + "{expr} can either be a quoted string, or any expression which can be fed to eval() like 4+5. " + + "You can also view the source code of objects and functions if the return value of {expr} is an object or function." } )); addDefaultCommand(new Command(["echoe[rr]"], @@ -531,8 +531,9 @@ function Commands() //{{{ vimperator.echoerr(res); }, { + usage: ["echoe[rr] {expr}"], short_help: "Display an error string at the bottom of the window", - help: "Echo all arguments of this command highlighted in red. Useful for showing important messages." + help: "Just like :ec[ho], but echoes the result highlighted in red. Useful for showing important messages." } )); addDefaultCommand(new Command(["exe[cute]"],