From e65521e9c2b5c92f7526066be86ff2386aa1134e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 2 Mar 2026 19:36:13 +0530 Subject: [PATCH] Clarify that overlay windows are not traversed by next/prev window actions --- kitty/tabs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kitty/tabs.py b/kitty/tabs.py index 7ba37c54a..5d966c374 100644 --- a/kitty/tabs.py +++ b/kitty/tabs.py @@ -886,11 +886,11 @@ class Tab: # {{{ self.current_layout.next_window(self.windows, delta) self.relayout_borders() - @ac('win', 'Focus the next window in the current tab') + @ac('win', 'Focus the next window in the current tab. Does not traverse overlay windows.') def next_window(self) -> None: self._next_window() - @ac('win', 'Focus the previous window in the current tab') + @ac('win', 'Focus the previous window in the current tab. Does not traverse overlay windows.') def previous_window(self) -> None: self._next_window(-1)