aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ascii.h
diff options
context:
space:
mode:
authorÉrico Nogueira Rolim <34201958+ericonr@users.noreply.github.com>2021-06-30 22:29:51 -0300
committerGitHub <noreply@github.com>2021-06-30 21:29:51 -0400
commitf35a5f2efc32b508ff5fc7d55b31a5bb7facfa17 (patch)
tree15b48991acf28986d663258ec0b469b9f4673c59 /src/nvim/ascii.h
parent8bd699008445d690f8dca87e69a2e73f5f172784 (diff)
downloadrneovim-f35a5f2efc32b508ff5fc7d55b31a5bb7facfa17.tar.gz
rneovim-f35a5f2efc32b508ff5fc7d55b31a5bb7facfa17.tar.bz2
rneovim-f35a5f2efc32b508ff5fc7d55b31a5bb7facfa17.zip
Revert "tui: improve support for tmux, GNU Screen" (#14786)
* Revert "tui: improve support for tmux, GNU Screen" This reverts commit c266c2f36ea56220268d2b19364e28815e338c2f. 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.
Diffstat (limited to 'src/nvim/ascii.h')
-rw-r--r--src/nvim/ascii.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/ascii.h b/src/nvim/ascii.h
index 7e4dee3d34..f41068ea70 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