1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 01:57:59 +01:00

disable beep on command line blur, as it has side effects. Also fixes :message in muttator

This commit is contained in:
Martin Stubenschrott
2008-10-30 23:21:00 +00:00
parent 8928c81404
commit 775ae63515
3 changed files with 7 additions and 5 deletions

View File

@@ -333,7 +333,7 @@ function Mail() //{{{
// SENDING MESSAGES
mappings.add(myModes, ["m"],
"Compose a new message",
function () { commandline.open(":", "message -subject=", modes.EX); });
function () { commandline.open(":", "mail -subject=", modes.EX); });
mappings.add(myModes, ["M"],
"Compose a new message to the sender of selected mail",
@@ -342,7 +342,7 @@ function Mail() //{{{
try
{
var to = escapeRecipient(gDBView.hdrForFirstSelectedMessage.mime2DecodedAuthor);
commandline.open(":", "message " + to + " -subject=", modes.EX);
commandline.open(":", "mail " + to + " -subject=", modes.EX);
}
catch (e)
{
@@ -683,7 +683,7 @@ function Mail() //{{{
count: true
});
commands.add(["m[essage]"],
commands.add(["m[ail]"],
"Write a new message",
function (args)
{