Do not use “no…” attributes in legacy options

Tmux-1.6 found in travis does not accept this.
This commit is contained in:
ZyX 2015-01-16 21:41:42 +03:00
parent a4525c8b0d
commit d9ed3a3117
1 changed files with 4 additions and 1 deletions

View File

@ -148,7 +148,10 @@ def init_environment(pl, args):
if attr == 'attrs':
attrs = attrs_to_tmux_attrs(get_highlighting(group)[attr])
set_tmux_environment(varname, ']#['.join(attrs))
set_tmux_environment(varname + '_LEGACY', ','.join(attrs))
set_tmux_environment(varname + '_LEGACY', ','.join(
# Tmux-1.6 does not accept no… attributes in
# window-status-…-attr options.
(attr for attr in attrs if not attr.startswith('no'))))
else:
set_tmux_environment(varname, 'colour' + str(get_highlighting(group)[attr][0]))