mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 08:17:59 +01:00
rename flagged -> starred
This commit is contained in:
@@ -786,11 +786,6 @@ vimperator.Events = function () //{{{
|
|||||||
vimperator.beep();
|
vimperator.beep();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
evt.preventDefault();
|
|
||||||
evt.stopPropagation();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -151,13 +151,13 @@ vimperator.Mail = function ()
|
|||||||
["c"], "Change folders",
|
["c"], "Change folders",
|
||||||
function () { vimperator.commandline.open(":", "goto ", vimperator.modes.EX); });
|
function () { vimperator.commandline.open(":", "goto ", vimperator.modes.EX); });
|
||||||
|
|
||||||
vimperator.mappings.add(modes, ["]f"],
|
vimperator.mappings.add(modes, ["]s"],
|
||||||
"Select next flagged message",
|
"Select next starred message",
|
||||||
function (count) { vimperator.mail.selectMessage(function(msg) { return msg.isFlagged; }, true, false, count); },
|
function (count) { vimperator.mail.selectMessage(function(msg) { return msg.isFlagged; }, true, false, count); },
|
||||||
{ flags: vimperator.Mappings.flags.COUNT });
|
{ flags: vimperator.Mappings.flags.COUNT });
|
||||||
|
|
||||||
vimperator.mappings.add(modes, ["[f"],
|
vimperator.mappings.add(modes, ["[s"],
|
||||||
"Select previous flagged message",
|
"Select previous starred message",
|
||||||
function (count) { vimperator.mail.selectMessage(function(msg) { return msg.isFlagged; }, true, true, count); },
|
function (count) { vimperator.mail.selectMessage(function(msg) { return msg.isFlagged; }, true, true, count); },
|
||||||
{ flags: vimperator.Mappings.flags.COUNT });
|
{ flags: vimperator.Mappings.flags.COUNT });
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user