diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-10-16 20:12:55 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-10-16 20:12:55 +0200 |
commit | c161d704f7629b78a08e53468e12637be1491436 (patch) | |
tree | 15dc6d75d457e63fb2180fece7c70e5c84a2456a /doc/it | |
parent | 2ed8974d2fae68c5c470421e6701649baf702562 (diff) | |
download | weechat-c161d704f7629b78a08e53468e12637be1491436.zip |
core: use value 2 of keep_eol in function string_split to keep separators at end of string
Diffstat (limited to 'doc/it')
-rw-r--r-- | doc/it/weechat_plugin_api.it.txt | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt index b92b401bd..f230e5c52 100644 --- a/doc/it/weechat_plugin_api.it.txt +++ b/doc/it/weechat_plugin_api.it.txt @@ -1016,8 +1016,14 @@ Argomenti: * 'string': stringa da dividere * 'separators': delimitatori usati per dividere -* 'keep_eol': se diversa da 0, allora ogni argomento conterrĂ tutte le stringhe - fino a fine riga (consultare l'esempio in basso) +* 'keep_eol': +// TRANSLATION MISSING +** 0: each string will contain one word +// TRANSLATION MISSING +** 1: each string will contain all string until end of line (see example below) +// TRANSLATION MISSING +** 2: same as 1, but do not remove separators at end of string before split + (_new in version 0.3.6_) * 'num_items_max': maximum number of items created (0 = no limit) * 'num_items': pointer to int which will contain number of items created |