You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Terminal keeps an array of raw output strings as the terminal buffer, and restore() returns the raw strings when requested. They are fed via IPC on a delay to the frontend. As we are using a full pty, this design causes various issues.
We should remove this raw buffer and instead utilise the pty buffer to handle save/restore - thus removing the need to replay every control character at potentially different width/height.
The text was updated successfully, but these errors were encountered:
Terminal
keeps an array of raw output strings as the terminal buffer, andrestore()
returns the raw strings when requested. They are fed via IPC on a delay to the frontend. As we are using a full pty, this design causes various issues.We should remove this raw buffer and instead utilise the pty buffer to handle save/restore - thus removing the need to replay every control character at potentially different width/height.
The text was updated successfully, but these errors were encountered: