fix(ux): hide cursor while rendering to prevent it from flickering around (#191)

This commit is contained in:
Aram Drevekenin 2021-02-18 16:47:37 +01:00 committed by GitHub
parent c0a0af3133
commit db26f849ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -606,6 +606,10 @@ impl Tab {
self.full_screen_ws.columns as u16,
self.full_screen_ws.rows as u16,
);
let hide_cursor = "\u{1b}[?25l";
stdout
.write_all(&hide_cursor.as_bytes())
.expect("cannot write to stdout");
for (kind, terminal) in self.panes.iter_mut() {
if !self.panes_to_hide.contains(&terminal.pid()) {
boundaries.add_rect(terminal.as_ref());