mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-09-01 14:53:30 +00:00
Fix #8461
This commit is contained in:
parent
ce5cfdd9ca
commit
1b0dc5ef3d
1 changed files with 2 additions and 0 deletions
|
|
@ -242,6 +242,7 @@ class WindowDict(TypedDict):
|
|||
user_vars: dict[str, str]
|
||||
at_prompt: bool
|
||||
created_at: int
|
||||
in_alternate_screen: bool
|
||||
|
||||
|
||||
class PipeData(TypedDict):
|
||||
|
|
@ -781,6 +782,7 @@ class Window:
|
|||
'columns': self.screen.columns,
|
||||
'user_vars': self.user_vars,
|
||||
'created_at': self.created_at,
|
||||
'in_alternate_screen': self.screen.is_using_alternate_linebuf(),
|
||||
}
|
||||
|
||||
def serialize_state(self) -> dict[str, Any]:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue