diff --git a/doc/de/autogen/plugin_api/plugins_priority.adoc b/doc/de/autogen/plugin_api/plugins_priority.adoc index 3caae876d..1ad2eebae 100644 --- a/doc/de/autogen/plugin_api/plugins_priority.adoc +++ b/doc/de/autogen/plugin_api/plugins_priority.adoc @@ -2,12 +2,13 @@ // This file is auto-generated by script docgen.py. // DO NOT EDIT BY HAND! // -. charset (13000) -. logger (12000) -. exec (11000) -. trigger (10000) -. aspell (9000) -. alias (8000) +. charset (14000) +. logger (13000) +. exec (12000) +. trigger (11000) +. aspell (10000) +. alias (9000) +. buflist (8000) . fifo (7000) . xfer (6000) . irc (5000) diff --git a/doc/en/autogen/plugin_api/plugins_priority.adoc b/doc/en/autogen/plugin_api/plugins_priority.adoc index 3caae876d..1ad2eebae 100644 --- a/doc/en/autogen/plugin_api/plugins_priority.adoc +++ b/doc/en/autogen/plugin_api/plugins_priority.adoc @@ -2,12 +2,13 @@ // This file is auto-generated by script docgen.py. // DO NOT EDIT BY HAND! // -. charset (13000) -. logger (12000) -. exec (11000) -. trigger (10000) -. aspell (9000) -. alias (8000) +. charset (14000) +. logger (13000) +. exec (12000) +. trigger (11000) +. aspell (10000) +. alias (9000) +. buflist (8000) . fifo (7000) . xfer (6000) . irc (5000) diff --git a/doc/fr/autogen/plugin_api/plugins_priority.adoc b/doc/fr/autogen/plugin_api/plugins_priority.adoc index 3caae876d..1ad2eebae 100644 --- a/doc/fr/autogen/plugin_api/plugins_priority.adoc +++ b/doc/fr/autogen/plugin_api/plugins_priority.adoc @@ -2,12 +2,13 @@ // This file is auto-generated by script docgen.py. // DO NOT EDIT BY HAND! // -. charset (13000) -. logger (12000) -. exec (11000) -. trigger (10000) -. aspell (9000) -. alias (8000) +. charset (14000) +. logger (13000) +. exec (12000) +. trigger (11000) +. aspell (10000) +. alias (9000) +. buflist (8000) . fifo (7000) . xfer (6000) . irc (5000) diff --git a/doc/it/autogen/plugin_api/plugins_priority.adoc b/doc/it/autogen/plugin_api/plugins_priority.adoc index 3caae876d..1ad2eebae 100644 --- a/doc/it/autogen/plugin_api/plugins_priority.adoc +++ b/doc/it/autogen/plugin_api/plugins_priority.adoc @@ -2,12 +2,13 @@ // This file is auto-generated by script docgen.py. // DO NOT EDIT BY HAND! // -. charset (13000) -. logger (12000) -. exec (11000) -. trigger (10000) -. aspell (9000) -. alias (8000) +. charset (14000) +. logger (13000) +. exec (12000) +. trigger (11000) +. aspell (10000) +. alias (9000) +. buflist (8000) . fifo (7000) . xfer (6000) . irc (5000) diff --git a/doc/ja/autogen/plugin_api/plugins_priority.adoc b/doc/ja/autogen/plugin_api/plugins_priority.adoc index 3caae876d..1ad2eebae 100644 --- a/doc/ja/autogen/plugin_api/plugins_priority.adoc +++ b/doc/ja/autogen/plugin_api/plugins_priority.adoc @@ -2,12 +2,13 @@ // This file is auto-generated by script docgen.py. // DO NOT EDIT BY HAND! // -. charset (13000) -. logger (12000) -. exec (11000) -. trigger (10000) -. aspell (9000) -. alias (8000) +. charset (14000) +. logger (13000) +. exec (12000) +. trigger (11000) +. aspell (10000) +. alias (9000) +. buflist (8000) . fifo (7000) . xfer (6000) . irc (5000) diff --git a/doc/pl/autogen/plugin_api/plugins_priority.adoc b/doc/pl/autogen/plugin_api/plugins_priority.adoc index 3caae876d..1ad2eebae 100644 --- a/doc/pl/autogen/plugin_api/plugins_priority.adoc +++ b/doc/pl/autogen/plugin_api/plugins_priority.adoc @@ -2,12 +2,13 @@ // This file is auto-generated by script docgen.py. // DO NOT EDIT BY HAND! // -. charset (13000) -. logger (12000) -. exec (11000) -. trigger (10000) -. aspell (9000) -. alias (8000) +. charset (14000) +. logger (13000) +. exec (12000) +. trigger (11000) +. aspell (10000) +. alias (9000) +. buflist (8000) . fifo (7000) . xfer (6000) . irc (5000) diff --git a/src/plugins/alias/alias.c b/src/plugins/alias/alias.c index 81e339fa1..edd2e226b 100644 --- a/src/plugins/alias/alias.c +++ b/src/plugins/alias/alias.c @@ -36,7 +36,7 @@ WEECHAT_PLUGIN_DESCRIPTION(N_("Alias commands")); WEECHAT_PLUGIN_AUTHOR("Sébastien Helleu "); WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); -WEECHAT_PLUGIN_PRIORITY(8000); +WEECHAT_PLUGIN_PRIORITY(9000); #define ALIAS_IS_ARG_NUMBER(number) ((number >= '1') && (number <= '9')) diff --git a/src/plugins/aspell/weechat-aspell.c b/src/plugins/aspell/weechat-aspell.c index d8375e553..1d126607c 100644 --- a/src/plugins/aspell/weechat-aspell.c +++ b/src/plugins/aspell/weechat-aspell.c @@ -46,7 +46,7 @@ WEECHAT_PLUGIN_DESCRIPTION(N_("Spell checker for input (with Aspell)")); WEECHAT_PLUGIN_AUTHOR("Sébastien Helleu "); WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); -WEECHAT_PLUGIN_PRIORITY(9000); +WEECHAT_PLUGIN_PRIORITY(10000); struct t_weechat_plugin *weechat_aspell_plugin = NULL; diff --git a/src/plugins/buflist/buflist.c b/src/plugins/buflist/buflist.c index 90f453ee2..3e197071b 100644 --- a/src/plugins/buflist/buflist.c +++ b/src/plugins/buflist/buflist.c @@ -32,7 +32,7 @@ WEECHAT_PLUGIN_DESCRIPTION(N_("Buffers list")); WEECHAT_PLUGIN_AUTHOR("Sébastien Helleu "); WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); -WEECHAT_PLUGIN_PRIORITY(14000); +WEECHAT_PLUGIN_PRIORITY(8000); struct t_weechat_plugin *weechat_buflist_plugin = NULL; diff --git a/src/plugins/charset/charset.c b/src/plugins/charset/charset.c index 05f77aee5..29f8c89d9 100644 --- a/src/plugins/charset/charset.c +++ b/src/plugins/charset/charset.c @@ -37,7 +37,7 @@ WEECHAT_PLUGIN_DESCRIPTION(N_("Charset conversions")); WEECHAT_PLUGIN_AUTHOR("Sébastien Helleu "); WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); -WEECHAT_PLUGIN_PRIORITY(13000); +WEECHAT_PLUGIN_PRIORITY(14000); #define CHARSET_CONFIG_NAME "charset" diff --git a/src/plugins/exec/exec.c b/src/plugins/exec/exec.c index 1df680da9..1ae407fbe 100644 --- a/src/plugins/exec/exec.c +++ b/src/plugins/exec/exec.c @@ -37,7 +37,7 @@ WEECHAT_PLUGIN_DESCRIPTION(N_("Execution of external commands in WeeChat")); WEECHAT_PLUGIN_AUTHOR("Sébastien Helleu "); WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); -WEECHAT_PLUGIN_PRIORITY(11000); +WEECHAT_PLUGIN_PRIORITY(12000); struct t_weechat_plugin *weechat_exec_plugin = NULL; diff --git a/src/plugins/logger/logger.c b/src/plugins/logger/logger.c index 38e9ec287..1abc3efc7 100644 --- a/src/plugins/logger/logger.c +++ b/src/plugins/logger/logger.c @@ -50,7 +50,7 @@ WEECHAT_PLUGIN_DESCRIPTION(N_("Log buffers to files")); WEECHAT_PLUGIN_AUTHOR("Sébastien Helleu "); WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); -WEECHAT_PLUGIN_PRIORITY(12000); +WEECHAT_PLUGIN_PRIORITY(13000); struct t_weechat_plugin *weechat_logger_plugin = NULL; diff --git a/src/plugins/trigger/trigger.c b/src/plugins/trigger/trigger.c index 9d624dcdd..506d13fbd 100644 --- a/src/plugins/trigger/trigger.c +++ b/src/plugins/trigger/trigger.c @@ -38,7 +38,7 @@ WEECHAT_PLUGIN_DESCRIPTION(N_("Text replacement and command execution on events WEECHAT_PLUGIN_AUTHOR("Sébastien Helleu "); WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); -WEECHAT_PLUGIN_PRIORITY(10000); +WEECHAT_PLUGIN_PRIORITY(11000); struct t_weechat_plugin *weechat_trigger_plugin = NULL;