This commit is contained in:
Kovid Goyal 2023-01-17 12:05:23 +05:30
parent ce161e610f
commit 009fd6418c
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -486,7 +486,8 @@ def tab_for_window(self, window: Window) -> Optional[Tab]:
def match_tabs(self, match: str) -> Iterator[Tab]:
if match == 'all':
return self.all_tabs
yield from self.all_tabs
return
from .search_query_parser import search
tm = self.active_tab_manager
if current_focused_os_window_id() <= 0: