diff options
author | Doug Kearns <dougkearns@gmail.com> | 2011-01-03 21:42:41 +1100 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2011-01-03 21:42:41 +1100 |
commit | 6117ad098a1275eb9b75820ad558673f10894d9f (patch) | |
tree | 889d8d7e75dd51e929e89fb9c46e65c0c251efa2 | |
parent | 2649952ef21c5932fc36eb9859dcedec19082332 (diff) | |
download | pentadactyl-6117ad098a1275eb9b75820ad558673f10894d9f.tar.gz |
Fix -pentadactyl command-line argument parsing.
Closes issue #224.
-rw-r--r-- | common/content/dactyl.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/content/dactyl.js b/common/content/dactyl.js index 4d268317..63271494 100644 --- a/common/content/dactyl.js +++ b/common/content/dactyl.js @@ -1883,11 +1883,13 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), { { names: ["++cmd"], description: "Ex commands to execute prior to initialization", + type: CommandOption.STRING, multiple: true }, { names: ["+c"], description: "Ex commands to execute after initialization", + type: CommandOption.STRING, multiple: true } ] |