diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-08-21 07:41:28 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-08-21 07:41:28 +0200 |
commit | db0bdc2ac69c27728fa415dd452fc88bb9e92f0f (patch) | |
tree | c5ff585133bde66c7653b113bcce1d9abb0ea7fe /doc/it | |
parent | 8c554d88c93a48bec48317b15d1da61fa20d6cbb (diff) | |
download | weechat-db0bdc2ac69c27728fa415dd452fc88bb9e92f0f.zip |
core: add flag "input_get_empty" in buffer
The default value is 0 (legacy behavior).
When it is set to 1, an empty input (just by pressing Return with nothing in
input) is sent to the input callback, which receives an empty string.
Diffstat (limited to 'doc/it')
-rw-r--r-- | doc/it/autogen/plugin_api/hdata.adoc | 1 | ||||
-rw-r--r-- | doc/it/weechat_plugin_api.it.adoc | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/doc/it/autogen/plugin_api/hdata.adoc b/doc/it/autogen/plugin_api/hdata.adoc index dc8e01fef..9f8b5ad64 100644 --- a/doc/it/autogen/plugin_api/hdata.adoc +++ b/doc/it/autogen/plugin_api/hdata.adoc @@ -534,6 +534,7 @@ _input_callback_ (pointer) + _input_callback_pointer_ (pointer) + _input_callback_data_ (pointer) + _input_get_unknown_commands_ (integer) + +_input_get_empty_ (integer) + _input_buffer_ (string) + _input_buffer_alloc_ (integer) + _input_buffer_size_ (integer) + diff --git a/doc/it/weechat_plugin_api.it.adoc b/doc/it/weechat_plugin_api.it.adoc index aa43d38d9..cdbe1d94d 100644 --- a/doc/it/weechat_plugin_api.it.adoc +++ b/doc/it/weechat_plugin_api.it.adoc @@ -12260,6 +12260,8 @@ Argomenti: ** _input_: 1 se l'input è abilitato, altrimenti 0 ** _input_get_unknown_commands_: 1 se i comandi sconosciuti vengono inviati alla callback di input, altrimenti 0 +// TRANSLATION MISSING +** _input_get_empty_: 1 if empty input is sent to input callback, otherwise 0 ** _input_size_: dimensione per l'input (in byte) ** _input_length_: lunghezza dell'input (numero di caratteri) ** _input_pos_: posizione del cursore nell'input del buffer @@ -12585,6 +12587,10 @@ Properties: digita "/unknowncmd", verrà ricevuto dal buffer (nessun errore riguardo il comando sconosciuto). +// TRANSLATION MISSING +| input_get_empty | "0" oppure "1" | + "0" to disable empty input on this buffer (default behavior), "1" to get empty input. + | localvar_set_xxx | qualsiasi stringa | Imposta il nuovo valore per la variabile locale _xxx_ (la variabile verrà creata se non esiste). |