From d68ae0144840cb5d5cb7ed21666b005ae9d682ec Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 13 Dec 2019 18:16:59 +0530 Subject: [PATCH] Make the active window history available when doing kitty @ ls Fixes #2194 --- kitty/tabs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kitty/tabs.py b/kitty/tabs.py index 074be4d63..b804ac374 100644 --- a/kitty/tabs.py +++ b/kitty/tabs.py @@ -580,6 +580,7 @@ class TabManager: # {{{ 'title': tab.name or tab.title, 'layout': tab.current_layout.name, 'windows': list(tab.list_windows(active_window)), + 'active_window_history': list(tab.active_window_history), } @property