diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2024-03-07 07:45:01 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2024-03-12 20:37:44 +0100 |
commit | f9e8c7faab0e318fc2f1b4285631eb9312bbb93f (patch) | |
tree | 70012bf70b39fc619ab1ccc728b321219c74acf0 /doc/it/weechat_plugin_api.it.adoc | |
parent | 5af0415508b0ecaca0c07640be10250dff59623a (diff) | |
download | weechat-f9e8c7faab0e318fc2f1b4285631eb9312bbb93f.zip |
api: allow search by buffer id in function buffer_search (issue #2081)
Diffstat (limited to 'doc/it/weechat_plugin_api.it.adoc')
-rw-r--r-- | doc/it/weechat_plugin_api.it.adoc | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/it/weechat_plugin_api.it.adoc b/doc/it/weechat_plugin_api.it.adoc index ba611b731..ab928cc64 100644 --- a/doc/it/weechat_plugin_api.it.adoc +++ b/doc/it/weechat_plugin_api.it.adoc @@ -14948,9 +14948,10 @@ weechat.prnt(weechat.current_buffer(), "Testo sul buffer corrente") ==== buffer_search // TRANSLATION MISSING -_Updated in 1.0._ +_Updated in 1.0, 4.3.0._ -Cerca un buffer tramite plugin e/o nome. +// TRANSLATION MISSING +Search a buffer by plugin/name, full name or unique identifier (`id`). Prototipo: @@ -14963,11 +14964,13 @@ struct t_gui_buffer *weechat_buffer_search (const char *plugin, Argomenti: // TRANSLATION MISSING -* _plugin_: name of plugin, following special value is allowed: +* _plugin_: name of plugin, following special values are allowed: ** `+==+`: the name used is the buffer full name (for example: `irc.libera.#weechat` instead of `libera.#weechat`) _(WeeChat ≥ 1.0)_ // TRANSLATION MISSING +** `+==id+`: the name used is the buffer unique identifier (`id`) _(WeeChat ≥ 4.3.0)_ +// TRANSLATION MISSING * _name_: name of buffer, if it is NULL or empty string, the current buffer is returned (buffer displayed by current window); if the name starts with `(?i)`, the search is case insensitive _(WeeChat ≥ 1.0)_ @@ -14982,6 +14985,7 @@ Esempio in C: ---- struct t_gui_buffer *buffer1 = weechat_buffer_search ("irc", "libera.#weechat"); struct t_gui_buffer *buffer2 = weechat_buffer_search ("==", "irc.libera.#test"); /* WeeChat ≥ 1.0 */ +struct t_gui_buffer *buffer3 = weechat_buffer_search ("==id", "1709797810942688"); /* WeeChat ≥ 4.3.0 */ ---- Script (Python): |