From 9133c8c2e68e9efdd4d84c462a3439062c324976 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 9 Dec 2021 23:09:26 -0500 Subject: also enable alternate scroll mode --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 6c515c6..281d19b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -85,8 +85,8 @@ mod input; #[cfg(feature = "async")] pub use input::{Input, RawGuard}; -const INIT: &[u8] = b"\x1b7\x1b[?47h\x1b[2J\x1b[H\x1b[?25h"; -const DEINIT: &[u8] = b"\x1b[?47l\x1b8\x1b[?25h"; +const INIT: &[u8] = b"\x1b7\x1b[?1007h\x1b[?47h\x1b[2J\x1b[H\x1b[?25h"; +const DEINIT: &[u8] = b"\x1b[?47l\x1b[?1007l\x1b8\x1b[?25h"; /// Provides the methods used to manipulate the in-memory screen. pub trait Textmode: private::Output { -- cgit v1.2.3-54-g00ecf