We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4122f02 commit ec69100Copy full SHA for ec69100
kitty/tabs.py
@@ -268,9 +268,10 @@ def _startup(self, session_tab: SessionTab) -> None:
268
if window.focus_matching_window_spec:
269
# include windows from this tab when matching windows
270
all_windows = list(boss.all_windows)
271
- all_windows.extend(w for w in self if w not in all_windows)
+ awq = {w.id for w in all_windows}
272
+ all_windows.extend(w for w in self if w.id not in awq)
273
for w in boss.match_windows(
- window.focus_matching_window_spec, launched_window or boss.active_window, all_windows
274
+ window.focus_matching_window_spec, launched_window or boss.active_window, all_windows
275
):
276
tab = w.tabref()
277
if tab:
0 commit comments