Fix remote command --match=all returns empty

This commit is contained in:
pagedown 2022-05-01 23:05:22 +08:00
parent 0719c7f8bb
commit ec35b0cc7c
No known key found for this signature in database
GPG Key ID: E921CF18AC8FF6EB

View File

@ -342,7 +342,8 @@ class Boss:
def match_windows(self, match: str) -> Iterator[Window]:
if match == 'all':
return self.all_windows
yield from self.all_windows
return
from .search_query_parser import search
tab = self.active_tab