1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 05:57:58 +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

@@ -119,7 +119,6 @@ liberator.Buffer = function () //{{{
return win;
}
// both values are given in percent, -1 means no change
function scrollToPercentiles(horizontal, vertical)
{
@@ -139,8 +138,6 @@ liberator.Buffer = function () //{{{
win.scrollTo(h, v);
}
/////////////////////////////////////////////////////////////////////////////}}}
////////////////////// OPTIONS /////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////{{{
@@ -416,7 +413,6 @@ liberator.Buffer = function () //{{{
"Print file information",
function (count) { liberator.buffer.showPageInfo(true); });
/////////////////////////////////////////////////////////////////////////////}}}
////////////////////// COMMANDS ////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////{{{
@@ -1066,7 +1062,6 @@ liberator.Buffer = function () //{{{
if (liberator.bookmarks.isBookmarked(this.URL))
info.push("bookmarked");
var pageInfoText = '"' + file + '" [' + info.join(", ") + "] " + title;
liberator.echo(pageInfoText, liberator.commandline.FORCE_SINGLELINE);
return;
@@ -1090,7 +1085,7 @@ liberator.Buffer = function () //{{{
pageGeneral.push(["Mime-Type", content.document.contentType]);
pageGeneral.push(["Encoding", content.document.characterSet]);
pageGeneral.push(["Compatibility", content.document.compatMode == "BackCompat" ? "Quirks Mode" : "Full/Almost Standards Mode"]);
pageGeneral.push(["Compatibility", content.document.compatMode == "BackCompat" ? "Quirks Mode" : "Full/Almost Standards Mode"]);
if (lastModVerbose)
pageGeneral.push(["Last Modified", lastModVerbose]);
@@ -1306,8 +1301,6 @@ liberator.Buffer = function () //{{{
//}}}
}; //}}}
liberator.Marks = function () //{{{
{
////////////////////////////////////////////////////////////////////////////////
@@ -1434,7 +1427,6 @@ liberator.Marks = function () //{{{
function (arg) { liberator.marks.jumpTo(arg); },
{ flags: liberator.Mappings.flags.ARGUMENT });
/////////////////////////////////////////////////////////////////////////////}}}
////////////////////// COMMANDS ////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////{{{
@@ -1679,5 +1671,4 @@ liberator.Marks = function () //{{{
//}}}
}; //}}}
// vim: set fdm=marker sw=4 ts=4 et: