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

added new hint color options and a new hintmatching option (thanks Daniel)

This commit is contained in:
Martin Stubenschrott
2008-04-30 21:45:36 +00:00
parent 47d149910f
commit 3c4edd335b
7 changed files with 192 additions and 50 deletions

View File

@@ -202,9 +202,25 @@ liberator.Mail = function ()
function () { goDoCommand("cmd_forwardInline"); });
liberator.mappings.add(modes, ["r"],
"Reply to sender",
function () { goDoCommand("cmd_reply"); });
// UNDO/REDO
liberator.mappings.add(modes, ["u"],
"Undo",
function ()
{
if (messenger.canUndo())
messenger.undo(msgWindow);
else
liberator.beep();
});
liberator.mappings.add(modes, ["<C-r>"],
"Redo",
function ()
{
if (messenger.canRedo())
messenger.redo(msgWindow);
else
liberator.beep();
});
// GETTING MAIL
liberator.mappings.add(modes, ["gm"],