Revert "tui: improve support for tmux, GNU Screen" (#14786)

* Revert "tui: improve support for tmux, GNU Screen"

This reverts commit c266c2f36e.

This commit broke neovim under tmux, where it "types" the background
string as input to the terminal. Fixing this with neovim as-is requires
changing tmux keybindings or TERM settings, which has to be done by
every single user, therefore a fix should happen on neovim's side.

Fixes #14298

* tui: fix code lints.
This commit is contained in:
Érico Nogueira Rolim
2021-06-30 22:29:51 -03:00
committed by GitHub
parent 8bd6990084
commit f35a5f2efc
2 changed files with 11 additions and 22 deletions

View File

@@ -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