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 @@ class Boss:
def match_tabs(self, match: str) -> Iterator[Tab]: def match_tabs(self, match: str) -> Iterator[Tab]:
if match == 'all': if match == 'all':
return self.all_tabs yield from self.all_tabs
return
from .search_query_parser import search from .search_query_parser import search
tm = self.active_tab_manager tm = self.active_tab_manager
if current_focused_os_window_id() <= 0: if current_focused_os_window_id() <= 0: