diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-03-31 22:39:09 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-03-31 22:39:09 +0200 |
commit | 848cce2c8a7f100e68496f6c4677b33547c293ee (patch) | |
tree | ff7499a0ca22f279d456043816516f357a1601a3 /doc/it | |
parent | 253ff0700974505c9791ce588ddf2ce596005315 (diff) | |
download | weechat-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/it')
-rw-r--r-- | doc/it/autogen/user/weechat_options.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/it/autogen/user/weechat_options.txt b/doc/it/autogen/user/weechat_options.txt index 73f49f4a7..f1e2567ef 100644 --- a/doc/it/autogen/user/weechat_options.txt +++ b/doc/it/autogen/user/weechat_options.txt @@ -574,7 +574,7 @@ ** valori: qualsiasi stringa (valore predefinito: "%h/ssl/CAs.pem") * *weechat.plugin.autoload* -** descrizione: elenco separato da virgole di plugin da caricare automaticamente all'avvio, "*" per tutti i plugin trovati (nomi possono essere parziali, per esempio "perl" va bene per "perl.so") +** descrizione: 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") ** tipo: stringa ** valori: qualsiasi stringa (valore predefinito: "*") |