Clarify that overlay windows are not traversed by next/prev window actions

This commit is contained in:
Kovid Goyal 2026-03-02 19:36:13 +05:30
parent e09e707dc6
commit e65521e9c2
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -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)