mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-25 18:37:50 +00:00
Also ensure oldest cwd request type is honored by modify_argv
This commit is contained in:
parent
b753cf6879
commit
714461de76
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ class CwdRequest:
|
|||
return ''
|
||||
if not window.child_is_remote and (self.request_type is CwdRequestType.last_reported or window.at_prompt):
|
||||
return reported_cwd
|
||||
return window.cwd_of_child or ''
|
||||
return window.get_cwd_of_child(oldest=self.request_type is CwdRequestType.oldest) or ''
|
||||
|
||||
|
||||
def process_title_from_child(title: str, is_base64: bool) -> str:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue