diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-01-15 07:40:38 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-01-15 07:40:38 +0100 |
commit | cf5501f69c4312fdfa9f73fd25a59c443f4413ea (patch) | |
tree | 243753563fe907d01a7182bb6f268f4bf5623b57 /doc/pl | |
parent | 66e0455951c245a8ac2d7b4bf0384e1d12405608 (diff) | |
download | weechat-cf5501f69c4312fdfa9f73fd25a59c443f4413ea.zip |
core: add priority in plugins to initialize them in order
Current order is: charset, logger, exec, trigger, aspell, alias, fifo, xfer,
irc, relay, guile/lua/perl/python/ruby/tcl, script.
Diffstat (limited to 'doc/pl')
-rw-r--r-- | doc/pl/autogen/plugin_api/hdata.asciidoc | 2 | ||||
-rw-r--r-- | doc/pl/autogen/plugin_api/plugins_priority.asciidoc | 12 |
2 files changed, 14 insertions, 0 deletions
diff --git a/doc/pl/autogen/plugin_api/hdata.asciidoc b/doc/pl/autogen/plugin_api/hdata.asciidoc index 6e92ef980..bf962a9df 100644 --- a/doc/pl/autogen/plugin_api/hdata.asciidoc +++ b/doc/pl/autogen/plugin_api/hdata.asciidoc @@ -843,6 +843,8 @@ *** 'version' (string) *** 'license' (string) *** 'charset' (string) +*** 'priority' (integer) +*** 'initialized' (integer) *** 'debug' (integer) *** 'prev_plugin' (pointer, hdata: "plugin") *** 'next_plugin' (pointer, hdata: "plugin") diff --git a/doc/pl/autogen/plugin_api/plugins_priority.asciidoc b/doc/pl/autogen/plugin_api/plugins_priority.asciidoc new file mode 100644 index 000000000..d5a171b0b --- /dev/null +++ b/doc/pl/autogen/plugin_api/plugins_priority.asciidoc @@ -0,0 +1,12 @@ +. charset (13000) +. logger (12000) +. exec (11000) +. trigger (10000) +. aspell (9000) +. alias (8000) +. fifo (7000) +. xfer (6000) +. irc (5000) +. relay (4000) +. guile, lua, perl, python, ruby, tcl (3000) +. script (2000) |