diff --git a/content/options.js b/content/options.js index a85657ef..25f46894 100644 --- a/content/options.js +++ b/content/options.js @@ -435,20 +435,6 @@ vimperator.Options = function() //{{{ default_value: false } )); - this.add(new vimperator.Option(["pageinfo", "pa"], "charlist", - { - short_help: "Desired info on :pa[geinfo]", - help: "Available items:
" + - "" + - "The order matters", - default_value: "gm", - validator: function (value) { if (/[^gm]/.test(value) || value.length > 2 || - value.length < 1) return false; else return true; } - } - )); this.add(new vimperator.Option(["complete", "cpt"], "charlist", { short_help: "Items which are completed at the :[tab]open prompt", @@ -609,6 +595,20 @@ vimperator.Options = function() //{{{ validator: function (value) { if (value >= 1 && value <= 1000) return true; else return false; } } )); + this.add(new vimperator.Option(["pageinfo", "pa"], "charlist", + { + short_help: "Desired info on :pa[geinfo]", + help: "Available items:
" + + "" + + "The order matters", + default_value: "gm", + validator: function (value) { if (/[^gm]/.test(value) || value.length > 2 || + value.length < 1) return false; else return true; } + } + )); this.add(new vimperator.Option(["popups", "pps"], "number", { short_help: "Where to show requested popup windows",