=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/options-table.c,v retrieving revision 1.149 retrieving revision 1.150 diff -c -r1.149 -r1.150 *** src/usr.bin/tmux/options-table.c 2021/08/11 20:49:55 1.149 --- src/usr.bin/tmux/options-table.c 2021/08/12 20:44:49 1.150 *************** *** 1,4 **** ! /* $OpenBSD: options-table.c,v 1.149 2021/08/11 20:49:55 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: options-table.c,v 1.150 2021/08/12 20:44:49 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott *************** *** 81,87 **** /* Status line format. */ #define OPTIONS_TABLE_STATUS_FORMAT1 \ ! "#[align=left range=left #{status-left-style}]" \ "#[push-default]" \ "#{T;=/#{status-left-length}:status-left}" \ "#[pop-default]" \ --- 81,87 ---- /* Status line format. */ #define OPTIONS_TABLE_STATUS_FORMAT1 \ ! "#[align=left range=left #{E:status-left-style}]" \ "#[push-default]" \ "#{T;=/#{status-left-length}:status-left}" \ "#[pop-default]" \ *************** *** 90,109 **** "#[list=left-marker]<#[list=right-marker]>#[list=on]" \ "#{W:" \ "#[range=window|#{window_index} " \ ! "#{window-status-style}" \ "#{?#{&&:#{window_last_flag}," \ ! "#{!=:#{window-status-last-style},default}}, " \ ! "#{window-status-last-style}," \ "}" \ "#{?#{&&:#{window_bell_flag}," \ ! "#{!=:#{window-status-bell-style},default}}, " \ ! "#{window-status-bell-style}," \ "#{?#{&&:#{||:#{window_activity_flag}," \ "#{window_silence_flag}}," \ "#{!=:" \ ! "#{window-status-activity-style}," \ "default}}, " \ ! "#{window-status-activity-style}," \ "}" \ "}" \ "]" \ --- 90,109 ---- "#[list=left-marker]<#[list=right-marker]>#[list=on]" \ "#{W:" \ "#[range=window|#{window_index} " \ ! "#{E:window-status-style}" \ "#{?#{&&:#{window_last_flag}," \ ! "#{!=:#{E:window-status-last-style},default}}, " \ ! "#{E:window-status-last-style}," \ "}" \ "#{?#{&&:#{window_bell_flag}," \ ! "#{!=:#{E:window-status-bell-style},default}}, " \ ! "#{E:window-status-bell-style}," \ "#{?#{&&:#{||:#{window_activity_flag}," \ "#{window_silence_flag}}," \ "#{!=:" \ ! "#{E:window-status-activity-style}," \ "default}}, " \ ! "#{E:window-status-activity-style}," \ "}" \ "}" \ "]" \ *************** *** 114,136 **** "#{?window_end_flag,,#{window-status-separator}}" \ "," \ "#[range=window|#{window_index} list=focus " \ ! "#{?#{!=:#{window-status-current-style},default}," \ ! "#{window-status-current-style}," \ ! "#{window-status-style}" \ "}" \ "#{?#{&&:#{window_last_flag}," \ ! "#{!=:#{window-status-last-style},default}}, " \ ! "#{window-status-last-style}," \ "}" \ "#{?#{&&:#{window_bell_flag}," \ ! "#{!=:#{window-status-bell-style},default}}, " \ ! "#{window-status-bell-style}," \ "#{?#{&&:#{||:#{window_activity_flag}," \ "#{window_silence_flag}}," \ "#{!=:" \ ! "#{window-status-activity-style}," \ "default}}, " \ ! "#{window-status-activity-style}," \ "}" \ "}" \ "]" \ --- 114,136 ---- "#{?window_end_flag,,#{window-status-separator}}" \ "," \ "#[range=window|#{window_index} list=focus " \ ! "#{?#{!=:#{E:window-status-current-style},default}," \ ! "#{E:window-status-current-style}," \ ! "#{E:window-status-style}" \ "}" \ "#{?#{&&:#{window_last_flag}," \ ! "#{!=:#{E:window-status-last-style},default}}, " \ ! "#{E:window-status-last-style}," \ "}" \ "#{?#{&&:#{window_bell_flag}," \ ! "#{!=:#{E:window-status-bell-style},default}}, " \ ! "#{E:window-status-bell-style}," \ "#{?#{&&:#{||:#{window_activity_flag}," \ "#{window_silence_flag}}," \ "#{!=:" \ ! "#{E:window-status-activity-style}," \ "default}}, " \ ! "#{E:window-status-activity-style}," \ "}" \ "}" \ "]" \ *************** *** 140,146 **** "#[norange list=on default]" \ "#{?window_end_flag,,#{window-status-separator}}" \ "}" \ ! "#[nolist align=right range=right #{status-right-style}]" \ "#[push-default]" \ "#{T;=/#{status-right-length}:status-right}" \ "#[pop-default]" \ --- 140,146 ---- "#[norange list=on default]" \ "#{?window_end_flag,,#{window-status-separator}}" \ "}" \ ! "#[nolist align=right range=right #{E:status-right-style}]" \ "#[push-default]" \ "#{T;=/#{status-right-length}:status-right}" \ "#[pop-default]" \