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

swapped ctrl-i/o

This commit is contained in:
Martin Stubenschrott
2008-03-02 00:53:12 +00:00
parent 97b6581985
commit a5d25f00c8

View File

@@ -169,12 +169,12 @@ vimperator.Mail = function ()
vimperator.mappings.add(modes, ["<C-o>"], vimperator.mappings.add(modes, ["<C-i>"],
"Get new messages", "Get new messages",
function (count) { if (count < 1) count = 1; while (count--) GoNextMessage(nsMsgNavigationType.forward, true); }, function (count) { if (count < 1) count = 1; while (count--) GoNextMessage(nsMsgNavigationType.forward, true); },
{ flags: vimperator.Mappings.flags.COUNT }); { flags: vimperator.Mappings.flags.COUNT });
vimperator.mappings.add(modes, ["<C-i>"], vimperator.mappings.add(modes, ["<C-o>"],
"Get new messages", "Get new messages",
function (count) { if (count < 1) count = 1; while (count--) GoNextMessage(nsMsgNavigationType.back, true); }, function (count) { if (count < 1) count = 1; while (count--) GoNextMessage(nsMsgNavigationType.back, true); },
{ flags: vimperator.Mappings.flags.COUNT }); { flags: vimperator.Mappings.flags.COUNT });