From 093c05e16a088e4444ec19a9d9db61f7e14f9b37 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 12 Oct 2018 18:19:50 +0530 Subject: [PATCH] When running kitty @ ls also output the current layout for each tab --- kitty/tabs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kitty/tabs.py b/kitty/tabs.py index 24a280ac2..7f98fbe59 100644 --- a/kitty/tabs.py +++ b/kitty/tabs.py @@ -439,6 +439,7 @@ class TabManager: # {{{ 'id': tab.id, 'is_focused': tab is active_tab, 'title': tab.name or tab.title, + 'layout': tab.current_layout.name, 'windows': list(tab.list_windows(active_window)), }