summaryrefslogtreecommitdiff
path: root/doc/en/autogen/user
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2010-03-31 22:39:09 +0200
committerSebastien Helleu <flashcode@flashtux.org>2010-03-31 22:39:09 +0200
commit848cce2c8a7f100e68496f6c4677b33547c293ee (patch)
treeff7499a0ca22f279d456043816516f357a1601a3 /doc/en/autogen/user
parent253ff0700974505c9791ce588ddf2ce596005315 (diff)
downloadweechat-848cce2c8a7f100e68496f6c4677b33547c293ee.zip
Improve plugins autoload (option weechat.plugin.autoload): allow to use "*" as joker and "!" to prevent a plugin from being autoloaded (task #6361)
Some examples for option weechat.plugin.autoload: - load all plugins (default): "*" - load only alias, charset, irc and logger: "alias,charset,irc,logger" - load all plugins but not lua and tcl: "*,!lua,!tcl" - load all plugins but not perl and python: "*,!p*" (not recommended because new future plugins may begin with "p") - do not load any plugin (weechat core alone is not really useful eheh): "!*"
Diffstat (limited to 'doc/en/autogen/user')
-rw-r--r--doc/en/autogen/user/weechat_options.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/en/autogen/user/weechat_options.txt b/doc/en/autogen/user/weechat_options.txt
index d98890259..f8a4a37b4 100644
--- a/doc/en/autogen/user/weechat_options.txt
+++ b/doc/en/autogen/user/weechat_options.txt
@@ -574,7 +574,7 @@
** values: any string (default value: "%h/ssl/CAs.pem")
* *weechat.plugin.autoload*
-** description: comma separated list of plugins to load automatically at startup, "*" means all plugins found (names may be partial, for example "perl" is ok for "perl.so")
+** description: comma separated list of plugins to load automatically at startup, "*" means all plugins found, a name beginning with "!" is a negative value to prevent a plugin from being loaded, names can start or end with "*" to match several plugins (examples: "*", "*,!lua,!tcl")
** type: string
** values: any string (default value: "*")