diff options
author | Doug Kearns <dougkearns@gmail.com> | 2011-01-01 03:54:43 +1100 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2011-01-01 03:54:43 +1100 |
commit | 24f5c9d06dc08728237c44e77e16aef0fc27e972 (patch) | |
tree | 71410a3b0f1fd2c2851aa875b88f26a0645bdda0 /melodactyl | |
parent | 729bf8d45c868b500ede2bd98d3c4021d60e5df6 (diff) | |
download | pentadactyl-24f5c9d06dc08728237c44e77e16aef0fc27e972.tar.gz |
Make the :command-complete completers config specific.
Adds a few missing completers for Pentadactyl.
Diffstat (limited to 'melodactyl')
-rw-r--r-- | melodactyl/content/config.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/melodactyl/content/config.js b/melodactyl/content/config.js index c5a1a4bd..e6c1c8f0 100644 --- a/melodactyl/content/config.js +++ b/melodactyl/content/config.js @@ -63,6 +63,14 @@ const Config = Module("config", ConfigBase, { Leave: "Triggered before exiting Songbird" }, + completers: Class.memoize(function () update({ + displaypane: "displayPane", + playlist: "playlist", + mediaview: "mediaView", + mediasort: "mediaListSort", + song: "song" + }, this.__proto__.completers)), + dialogs: { about: ["About Songbird", function () { window.openDialog("chrome://songbird/content/xul/about.xul", "_blank", "chrome,dialog,modal,centerscreen"); }], |