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:
@@ -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 });
|
||||||
|
|||||||
Reference in New Issue
Block a user