From db26f849ff3ae85580693bb95a2657385d0b1d18 Mon Sep 17 00:00:00 2001 From: Aram Drevekenin Date: Thu, 18 Feb 2021 16:47:37 +0100 Subject: [PATCH] fix(ux): hide cursor while rendering to prevent it from flickering around (#191) --- src/client/tab.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/client/tab.rs b/src/client/tab.rs index 174948c1b..8e8bffe0d 100644 --- a/src/client/tab.rs +++ b/src/client/tab.rs @@ -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());