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 @@ def as_dict(self, is_focused: bool = False, is_self: bool = False, is_active: bo
|
|||
'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…
Reference in a new issue