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 /src/plugins/python/weechat-python.c | |
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 'src/plugins/python/weechat-python.c')
-rw-r--r-- | src/plugins/python/weechat-python.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/python/weechat-python.c b/src/plugins/python/weechat-python.c index 5a8ea1bc0..434bb6536 100644 --- a/src/plugins/python/weechat-python.c +++ b/src/plugins/python/weechat-python.c @@ -39,6 +39,7 @@ WEECHAT_PLUGIN_DESCRIPTION(N_("Support of python scripts")); WEECHAT_PLUGIN_AUTHOR("Sébastien Helleu <flashcode@flashtux.org>"); WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); +WEECHAT_PLUGIN_PRIORITY(3000); struct t_weechat_plugin *weechat_python_plugin = NULL; |