mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-04 14:46:03 +00:00
Expose at_prompt property in kitty @ ls output
This commit is contained in:
parent
4c37fff496
commit
fcce5c9a64
1 changed files with 2 additions and 0 deletions
|
|
@ -206,6 +206,7 @@ class WindowDict(TypedDict):
|
|||
lines: int
|
||||
columns: int
|
||||
user_vars: Dict[str, str]
|
||||
at_prompt: bool
|
||||
|
||||
|
||||
class PipeData(TypedDict):
|
||||
|
|
@ -648,6 +649,7 @@ class Window:
|
|||
'env': self.child.environ,
|
||||
'foreground_processes': self.child.foreground_processes,
|
||||
'is_self': is_self,
|
||||
'at_prompt': self.at_prompt,
|
||||
'lines': self.screen.lines,
|
||||
'columns': self.screen.columns,
|
||||
'user_vars': self.user_vars,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue