Make the active window history available when doing kitty @ ls

Fixes #2194
This commit is contained in:
Kovid Goyal 2019-12-13 18:16:59 +05:30
parent 87eda834d3
commit d68ae01448
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -580,6 +580,7 @@ class TabManager: # {{{
'title': tab.name or tab.title, 'title': tab.name or tab.title,
'layout': tab.current_layout.name, 'layout': tab.current_layout.name,
'windows': list(tab.list_windows(active_window)), 'windows': list(tab.list_windows(active_window)),
'active_window_history': list(tab.active_window_history),
} }
@property @property