From 65a92350ba8a2c42627bb34cda614136b8a2612a Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sat, 27 Oct 2007 11:15:22 +0000 Subject: [PATCH] move :pageinfo command definition to its proper alphabetical position --- content/commands.js | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/content/commands.js b/content/commands.js index 7451bf38..9988c080 100644 --- a/content/commands.js +++ b/content/commands.js @@ -520,14 +520,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); }, { @@ -1384,6 +1376,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(); }, {