diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-04-05 19:16:03 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-04-05 19:16:03 +0200 |
commit | 6438259310f9e93e6fb51c828ca47342fd50383b (patch) | |
tree | 484b175740e61c0afad16525b28b14b8fb666e07 /doc/en | |
parent | 55d77ed216607dfc2d31f9a46c2564e333ee1b90 (diff) | |
download | weechat-6438259310f9e93e6fb51c828ca47342fd50383b.zip |
doc: add missing buffer properties in plugin API reference (hidden, zoomed, filter)
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/weechat_plugin_api.en.txt | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/doc/en/weechat_plugin_api.en.txt b/doc/en/weechat_plugin_api.en.txt index d6f111079..21f813f51 100644 --- a/doc/en/weechat_plugin_api.en.txt +++ b/doc/en/weechat_plugin_api.en.txt @@ -10275,11 +10275,17 @@ Arguments: ** 'num_displayed': number of windows displaying buffer ** 'active': 2 if buffer is the only active (merged), 1 if buffer is active, 0 if buffer is merged and not selected +** 'hidden': 1 if buffer is hidden, otherwise 0 + _(WeeChat ≥ 0.4.4)_ +** 'zoomed': 1 if buffer is merged and zoomed, otherwise 0 + _(WeeChat ≥ 0.4.4)_ ** 'print_hooks_enabled': 1 if print hooks are enabled, otherwise 0 ** 'day_change': 1 if messages for the day change are displayed, otherwise 0 _(WeeChat ≥ 0.4.3)_ ** 'clear': 1 if buffer can be cleared with command `/buffer clear`, otherwise 0 _(WeeChat ≥ 0.4.4)_ +** 'filter': 1 if filters are enabled on buffer, otherwise 0 + _(WeeChat ≥ 0.4.4)_ ** 'lines_hidden': 1 if at least one line is hidden on buffer (filtered), or 0 if all lines are displayed ** 'prefix_max_length': max length for prefix in this buffer @@ -10465,7 +10471,7 @@ Properties: priority: add buffer to hotlist with this priority + "-1": remove buffer from hotlist _(WeeChat ≥ 0.4.4)_ -| completion_freeze | "0", "1" | +| completion_freeze | "0" or "1" | "0": no freeze of completion (default value) (global setting, buffer pointer is not used) + "1": do not stop completion when command line is updated @@ -10474,10 +10480,15 @@ Properties: | unread | - | Set unread marker after last line of buffer -| display | "1", "auto" | +| display | "1" or "auto" | "1": switch to this buffer in current window + "auto": switch to this buffer in current window, read marker is not reset +| hidden + + _(WeeChat ≥ 0.4.4)_ | "0" or "1" | + "0": unhide the buffer + + "1": hide the buffer + | number | number | Move buffer to this number @@ -10512,6 +10523,11 @@ Properties: (note: even when it is set to "0", the buffer can still be cleared with the function <<_weechat_buffer_clear,weechat_buffer_clear>>) +| filter + + _(WeeChat ≥ 0.4.4)_ | "0" or "1" | + "0": disable filters on buffer + + "1": enable filters on buffer + | title | any string | Set new title for buffer |