From 994e40914b37b8b041e296f53aba47ea7cf0118e Mon Sep 17 00:00:00 2001 From: erw7 Date: Thu, 27 Aug 2020 00:52:49 +0900 Subject: Revert "tui: improve support for GNU Screen (#12098)" This reverts commit f3ffe0b325170dd214b80e371bee5a56b7054940. Sending a control sequence to the host terminal, wrapped in DCS, causes problems because it changes the state of the host terminal outside the screen's control. This change will therefore be reverted. --- src/nvim/ascii.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/nvim/ascii.h') diff --git a/src/nvim/ascii.h b/src/nvim/ascii.h index 31423e79af..2397af27cc 100644 --- a/src/nvim/ascii.h +++ b/src/nvim/ascii.h @@ -31,9 +31,7 @@ #define CSI 0x9b // Control Sequence Introducer #define CSI_STR "\233" #define DCS 0x90 // Device Control String -#define DCS_STR "\033P" #define STERM 0x9c // String Terminator -#define STERM_STR "\033\\" #define POUND 0xA3 -- cgit