mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 08:38:00 +01:00
renamed buffers.js to buffer.js
This commit is contained in:
@@ -48,10 +48,21 @@ vimperator.Mail = function ()
|
||||
////////////////////// MAPPINGS ////////////////////////////////////////////////
|
||||
/////////////////////////////////////////////////////////////////////////////{{{
|
||||
|
||||
vimperator.mappings.addDefault([vimperator.modes.NORMAL], ["<Return>", "<Space>"], "Focus message",
|
||||
vimperator.mappings.addDefault([vimperator.modes.NORMAL], ["<Return>", "<Space>"],
|
||||
"Focus message",
|
||||
function () { content.focus(); }
|
||||
);
|
||||
|
||||
// FIXME:the following mappings do not yet work!
|
||||
vimperator.mappings.addDefault([vimperator.modes.NORMAL], ["r"],
|
||||
"Reply to sender",
|
||||
function () { goDoCommand("cmd_reply"); }
|
||||
);
|
||||
vimperator.mappings.addDefault([vimperator.modes.NORMAL], ["d", "<Del>"],
|
||||
"Move mail to Trash folder",
|
||||
function () { goDoCommand("cmd_delete"); }
|
||||
);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////}}}
|
||||
////////////////////// PUBLIC SECTION //////////////////////////////////////////
|
||||
/////////////////////////////////////////////////////////////////////////////{{{
|
||||
|
||||
Reference in New Issue
Block a user