Make the os window id available in tab bar drawing
This commit is contained in:
parent
0a6ed15858
commit
c7117c2839
1 changed files with 2 additions and 1 deletions
|
|
@ -72,6 +72,7 @@ class DrawData(NamedTuple):
|
|||
powerline_style: PowerlineStyle
|
||||
tab_bar_edge: EdgeLiteral
|
||||
max_tab_title_length: int
|
||||
os_window_id: int
|
||||
|
||||
def tab_fg(self, tab: TabBarData) -> int:
|
||||
if tab.is_active:
|
||||
|
|
@ -598,7 +599,7 @@ def apply_options(self) -> None:
|
|||
opts.tab_activity_symbol,
|
||||
opts.tab_powerline_style,
|
||||
'bottom' if opts.tab_bar_edge == BOTTOM_EDGE else 'top',
|
||||
opts.tab_title_max_length,
|
||||
opts.tab_title_max_length, self.os_window_id,
|
||||
)
|
||||
ts = opts.tab_bar_style
|
||||
if ts == 'separator':
|
||||
|
|
|
|||
Loading…
Reference in a new issue