From 545db0f68f272a1de9434969af917683a4ab9897 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 28 Sep 2025 21:38:33 +0530 Subject: [PATCH] Remove debug print --- kitty/tabs.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kitty/tabs.py b/kitty/tabs.py index 30d76c85b..eabf724b6 100644 --- a/kitty/tabs.py +++ b/kitty/tabs.py @@ -1379,7 +1379,6 @@ class TabManager: # {{{ tab_id = self.active_tab_history.pop() next_active_tab = self.tab_for_id(tab_id) case 'left': - print(2222222222, tabs.index(active_tab_before_removal)) next_active_tab = tabs[(tabs.index(active_tab_before_removal) - 1 + len(tabs)) % len(tabs)] remove_from_end_of_active_history(next_active_tab) case 'right':