1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-07 13:44:12 +01:00

document :echomsg

This commit is contained in:
Doug Kearns
2008-11-10 02:53:46 +00:00
parent 91fa8dddff
commit 588c545f64
3 changed files with 21 additions and 13 deletions

View File

@@ -470,17 +470,17 @@ function CommandLine() //{{{
var echoCommands = [
{
name: "ec[ho]",
description: "Display a string at the bottom of the window",
description: "Echo the expression",
action: liberator.echo
},
{
name: "echoe[rr]",
description: "Display an error string at the bottom of the window",
description: "Echo the expression as an error message",
action: liberator.echoerr
},
{
name: "echom[sg]",
description: "Display a message at the bottom of the window saving it in the message history",
description: "Echo the expression as an informational message",
action: liberator.echomsg
}
];