mirror of
https://github.com/weechat/weechat.git
synced 2026-07-09 03:03:12 +02:00
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): "!*"
This commit is contained in:
@@ -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: "*")
|
||||
|
||||
|
||||
@@ -574,7 +574,7 @@
|
||||
** valeurs: toute chaîne (valeur par défaut: "%h/ssl/CAs.pem")
|
||||
|
||||
* *weechat.plugin.autoload*
|
||||
** description: liste des extensions à charger automatiquement au démarrage, "*" signifie toutes (séparées par des virgules, les noms peuvent être partiels, par exemple "perl" est ok pour "perl.so")
|
||||
** description: liste des extensions à charger automatiquement au démarrage (séparées par des virgules), "*" signifie toutes les extensions trouvées, un nom commençant par "!" est une valeur négative pour empêcher une extension d'être chargée, les noms peuvent commencer ou se terminer par "*" pour indiquer plusieurs extensions (exemples: "*", "*,!lua,!tcl")
|
||||
** type: chaîne
|
||||
** valeurs: toute chaîne (valeur par défaut: "*")
|
||||
|
||||
|
||||
@@ -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: "*")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user