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

move :pageinfo command definition to its proper alphabetical position

This commit is contained in:
Doug Kearns
2007-10-30 09:30:23 +00:00
parent 60f6b623d8
commit 8cbaaf1c44

View File

@@ -225,14 +225,6 @@ vimperator.Commands = function() //{{{
////////////////////// DEFAULT COMMANDS ////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////{{{
addDefaultCommand(new vimperator.Command(["pa[geinfo]"],
function () { vimperator.buffer.pageInfo(true); },
{
short_help: "Show general and/or meta-content site informations",
help: "Show general and/or meta-content site informations"
}
));
addDefaultCommand(new vimperator.Command(["addo[ns]"],
function() { vimperator.open("chrome://mozapps/content/extensions/extensions.xul", vimperator.NEW_TAB); },
{
@@ -1067,6 +1059,13 @@ vimperator.Commands = function() //{{{
completer: function(filter) { return vimperator.completion.get_url_completions(filter); }
}
));
addDefaultCommand(new vimperator.Command(["pa[geinfo]"],
function () { vimperator.buffer.pageInfo(true); },
{
short_help: "Show general and/or meta-content site informations",
help: "Show general and/or meta-content site informations"
}
));
addDefaultCommand(new vimperator.Command(["pc[lose]"],
function() { vimperator.previewwindow.hide(); },
{