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

add some missing fold markers

This commit is contained in:
Doug Kearns
2008-05-17 16:04:24 +00:00
parent 8a1162349a
commit f43fc67115
11 changed files with 10 additions and 32 deletions

View File

@@ -26,7 +26,7 @@ the provisions above, a recipient may use your version of this file under
the terms of any one of the MPL, the GPL or the LGPL.
}}} ***** END LICENSE BLOCK *****/
liberator.Mail = function ()
liberator.Mail = function () //{{{
{
////////////////////////////////////////////////////////////////////////////////
////////////////////// PRIVATE SECTION /////////////////////////////////////////
@@ -367,8 +367,6 @@ liberator.Mail = function ()
function (count) { liberator.mail.selectMessage(function(msg) { return gDBView.db.HasAttachments(msg.messageKey); }, true, true, true, count); },
{ flags: liberator.Mappings.flags.COUNT });
// FOLDER SWITCHING
liberator.mappings.add(modes, ["gi"],
"Go to inbox",
@@ -414,7 +412,6 @@ liberator.Mail = function ()
},
{ flags: liberator.Mappings.flags.COUNT });
// THREADING
liberator.mappings.add(modes, ["za"],
"Toggle thread collapsed/expanded",
@@ -436,7 +433,6 @@ liberator.Mail = function ()
"Collapse all threads",
function () { goDoCommand("cmd_collapseAllThreads"); });
liberator.mappings.add(modes, ["<C-i>"],
"Go forward",
function (count) { if (count < 1) count = 1; while (count--) GoNextMessage(nsMsgNavigationType.forward, true); },
@@ -457,7 +453,6 @@ liberator.Mail = function ()
function (count) { if (count < 1) count = 1; while (count--) GoNextMessage(nsMsgNavigationType.lastMessage, false); },
{ flags: liberator.Mappings.flags.COUNT });
// tagging messages
liberator.mappings.add(modes, ["tr"],
"Toggle selected messages read",
@@ -480,7 +475,6 @@ liberator.Mail = function ()
MsgMarkThreadAsRead();
});
liberator.mappings.add(modes, ["ts"],
"Toggle selected messages starred",
function ()
@@ -747,7 +741,6 @@ liberator.Mail = function ()
if (folder.isServer)
continue;
selectMessageCount = count;
selectMessageKeys = [];
@@ -790,6 +783,6 @@ liberator.Mail = function ()
};
//}}}
};
}; //}}}
// vim: set fdm=marker sw=4 ts=4 et: