1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-28 13:56:37 +02:00

doc: Update weechat.bar.*.condition to use info:term_width

In cf93e953b the `weechat.bar.*.condition` examples have been changed to use
`${info:term_width}` instead of `${window.win_width}`. The user guide still
shows the old example. This commit syncs the user guide with the on-line help.
This commit is contained in:
Tobias Rehbein
2021-04-17 23:32:59 +02:00
committed by Sébastien Helleu
parent 2fbedfec1a
commit 2c674a54d4
+4 -4
View File
@@ -1597,17 +1597,17 @@ Following pointers are available:
* `+${buffer}+`: the buffer of window where condition is evaluated
Example to display nicklist bar in all buffers with a nicklist, and only if
width of window is > 100:
width of terminal is > 100:
----
/set weechat.bar.nicklist.conditions "${nicklist} && ${window.win_width} > 100"
/set weechat.bar.nicklist.conditions "${nicklist} && ${info:term_width} > 100"
----
Same condition, but always display nicklist on buffer _&bitlbee_ (even if window
Same condition, but always display nicklist on buffer _&bitlbee_ (even if terminal
is small):
----
/set weechat.bar.nicklist.conditions "${nicklist} && (${window.win_width} > 100 || ${buffer.full_name} == irc.bitlbee.&bitlbee)"
/set weechat.bar.nicklist.conditions "${nicklist} && (${info:term_width} > 100 || ${buffer.full_name} == irc.bitlbee.&bitlbee)"
----
[[bare_display]]