1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-29 03:12:26 +01:00

new f and F commands for forwarding messages

This commit is contained in:
Martin Stubenschrott
2008-04-29 20:22:48 +00:00
parent 2e857ecbd9
commit 3e2759a5e0

View File

@@ -153,6 +153,14 @@ liberator.Mail = function ()
"Reply to sender",
function () { goDoCommand("cmd_reply"); });
liberator.mappings.add(modes, ["f"],
"Forward message",
function () { goDoCommand("cmd_forward"); });
liberator.mappings.add(modes, ["F"],
"Forward message inline",
function () { goDoCommand("cmd_forwardInline"); });
liberator.mappings.add(modes, ["gm"],
"Get new messages",
function () { liberator.mail.getNewMessages(); });