1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-02 15:24:11 +01:00

Merge testing.

--HG--
rename : common/content/base.js => common/modules/base.jsm
rename : common/content/services.js => common/modules/services.jsm
rename : common/content/style.js => common/modules/styles.jsm
rename : common/content/template.js => common/modules/template.jsm
rename : common/content/util.js => common/modules/util.jsm
This commit is contained in:
Kris Maglione
2010-08-31 21:09:13 -04:00
parent 5632e14721
commit 8b0d9586b2
39 changed files with 2156 additions and 2197 deletions

View File

@@ -7,8 +7,6 @@
"use strict";
const History = Module("history", {
requires: ["config"],
get format() bookmarks.format,
get service() services.get("history"),
@@ -196,7 +194,7 @@ const History = Module("history", {
bang: true,
completer: function (context) { context.quote = null; completion.history(context); },
// completer: function (filter) completion.history(filter)
options: [[["-max", "-m"], commands.OPTION_INT]]
options: [{ names: ["-max", "-m"], description: "The maximum number of items to list", type: CommandOption.INT }]
});
},
completion: function () {