diff --git a/src/editor.rs b/src/editor.rs index 5a75ef8..d7df872 100644 --- a/src/editor.rs +++ b/src/editor.rs @@ -1099,7 +1099,7 @@ impl Editor { self.output_buffer.clear(); // Hide cursor, reposition cursor - self.append_out("\x1b[?25l"); + // self.append_out("\x1b[?25l"); self.append_out("\x1b[H"); self.draw_rows(); @@ -1113,7 +1113,7 @@ impl Editor { self.append_out(&cursor_code.as_str()); // Show cursor - self.append_out("\x1b[?25h"); + // self.append_out("\x1b[?25h"); let stdout = io::stdout(); let mut handle = stdout.lock();