diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-04-12 23:07:06 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-04-12 23:07:06 +0200 |
commit | 34723d2accede91aa8e5ad98f3434104995e15bb (patch) | |
tree | 89e470cffbeb4f5673e8ba2d008f1e963030c62a /doc/en/autogen/plugin_api/infolists.txt | |
parent | 001ea53f9de524bee480cdd3996b1c9e10b2d568 (diff) | |
download | weechat-34723d2accede91aa8e5ad98f3434104995e15bb.zip |
api: allow wildcard "*" inside the mask in function string_match
Diffstat (limited to 'doc/en/autogen/plugin_api/infolists.txt')
-rw-r--r-- | doc/en/autogen/plugin_api/infolists.txt | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/doc/en/autogen/plugin_api/infolists.txt b/doc/en/autogen/plugin_api/infolists.txt index 9c6eb98bc..b624a9018 100644 --- a/doc/en/autogen/plugin_api/infolists.txt +++ b/doc/en/autogen/plugin_api/infolists.txt @@ -2,9 +2,9 @@ |=== | Plugin | Name | Description | Pointer | Arguments -| alias | alias | list of aliases | alias pointer (optional) | alias name (can start or end with "*" as wildcard) (optional) +| alias | alias | list of aliases | alias pointer (optional) | alias name (wildcard "*" is allowed) (optional) -| guile | guile_script | list of scripts | script pointer (optional) | script name (can start or end with "*" as wildcard) (optional) +| guile | guile_script | list of scripts | script pointer (optional) | script name (wildcard "*" is allowed) (optional) | irc | irc_channel | list of channels for an IRC server | channel pointer (optional) | server,channel (channel is optional) @@ -12,41 +12,41 @@ | irc | irc_nick | list of nicks for an IRC channel | nick pointer (optional) | server,channel,nick (channel and nick are optional) -| irc | irc_notify | list of notify | notify pointer (optional) | server name (can start or end with "*" as wildcard) (optional) +| irc | irc_notify | list of notify | notify pointer (optional) | server name (wildcard "*" is allowed) (optional) -| irc | irc_server | list of IRC servers | server pointer (optional) | server name (can start or end with "*" as wildcard) (optional) +| irc | irc_server | list of IRC servers | server pointer (optional) | server name (wildcard "*" is allowed) (optional) | logger | logger_buffer | list of logger buffers | logger pointer (optional) | - -| lua | lua_script | list of scripts | script pointer (optional) | script name (can start or end with "*" as wildcard) (optional) +| lua | lua_script | list of scripts | script pointer (optional) | script name (wildcard "*" is allowed) (optional) -| perl | perl_script | list of scripts | script pointer (optional) | script name (can start or end with "*" as wildcard) (optional) +| perl | perl_script | list of scripts | script pointer (optional) | script name (wildcard "*" is allowed) (optional) -| python | python_script | list of scripts | script pointer (optional) | script name (can start or end with "*" as wildcard) (optional) +| python | python_script | list of scripts | script pointer (optional) | script name (wildcard "*" is allowed) (optional) | relay | relay | list of relay clients | relay pointer (optional) | - -| ruby | ruby_script | list of scripts | script pointer (optional) | script name (can start or end with "*" as wildcard) (optional) +| ruby | ruby_script | list of scripts | script pointer (optional) | script name (wildcard "*" is allowed) (optional) -| script | script_script | list of scripts | script pointer (optional) | script name with extension (can start or end with "*" as wildcard) (optional) +| script | script_script | list of scripts | script pointer (optional) | script name with extension (wildcard "*" is allowed) (optional) -| tcl | tcl_script | list of scripts | script pointer (optional) | script name (can start or end with "*" as wildcard) (optional) +| tcl | tcl_script | list of scripts | script pointer (optional) | script name (wildcard "*" is allowed) (optional) -| weechat | bar | list of bars | bar pointer (optional) | bar name (can start or end with "*" as wildcard) (optional) +| weechat | bar | list of bars | bar pointer (optional) | bar name (wildcard "*" is allowed) (optional) -| weechat | bar_item | list of bar items | bar item pointer (optional) | bar item name (can start or end with "*" as wildcard) (optional) +| weechat | bar_item | list of bar items | bar item pointer (optional) | bar item name (wildcard "*" is allowed) (optional) | weechat | bar_window | list of bar windows | bar window pointer (optional) | - -| weechat | buffer | list of buffers | buffer pointer (optional) | buffer name (can start or end with "*" as wildcard) (optional) +| weechat | buffer | list of buffers | buffer pointer (optional) | buffer name (wildcard "*" is allowed) (optional) | weechat | buffer_lines | lines of a buffer | buffer pointer | - -| weechat | filter | list of filters | - | filter name (can start or end with "*" as wildcard) (optional) +| weechat | filter | list of filters | - | filter name (wildcard "*" is allowed) (optional) | weechat | history | history of commands | buffer pointer (if not set, return global history) (optional) | - -| weechat | hook | list of hooks | hook pointer (optional) | type,arguments (type is command/timer/.., arguments to get only some hooks (can start or end with "*" as wildcard), both are optional) +| weechat | hook | list of hooks | hook pointer (optional) | type,arguments (type is command/timer/.., arguments to get only some hooks (wildcard "*" is allowed), both are optional) | weechat | hotlist | list of buffers in hotlist | - | - @@ -56,11 +56,11 @@ | weechat | nicklist | nicks in nicklist for a buffer | buffer pointer | nick_xxx or group_xxx to get only nick/group xxx (optional) -| weechat | option | list of options | - | option name (can start or end with "*" as wildcard) (optional) +| weechat | option | list of options | - | option name (wildcard "*" is allowed) (optional) -| weechat | plugin | list of plugins | plugin pointer (optional) | plugin name (can start or end with "*" as wildcard) (optional) +| weechat | plugin | list of plugins | plugin pointer (optional) | plugin name (wildcard "*" is allowed) (optional) -| weechat | proxy | list of proxies | proxy pointer (optional) | proxy name (can start or end with "*" as wildcard) (optional) +| weechat | proxy | list of proxies | proxy pointer (optional) | proxy name (wildcard "*" is allowed) (optional) | weechat | url_options | options for URL | - | - |