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:
@@ -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"],
|
||||
|
||||
Reference in New Issue
Block a user