Forgot to declare session as a valid search location
This commit is contained in:
parent
229413cbe8
commit
633725544c
1 changed files with 1 additions and 1 deletions
|
|
@ -548,7 +548,7 @@ def get_matches(location: str, query: str, candidates: set[int]) -> set[int]:
|
|||
return {wid for wid in candidates if self.window_id_map[wid].matches_query(location, query, tab, self_window, active_session)}
|
||||
|
||||
for wid in search(match, (
|
||||
'id', 'title', 'pid', 'cwd', 'cmdline', 'num', 'env', 'var', 'recent', 'state', 'neighbor',
|
||||
'id', 'title', 'pid', 'cwd', 'cmdline', 'num', 'env', 'var', 'recent', 'state', 'neighbor', 'session',
|
||||
), set(self.window_id_map), get_matches):
|
||||
yield self.window_id_map[wid]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue