diff options
author | erw7 <erw7.github@gmail.com> | 2021-04-04 12:03:33 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-04 12:03:33 +0900 |
commit | 8ed0a0d4dbe1575a0a3bca0f6e8034bfb380b1ef (patch) | |
tree | 129f28eb575c2d86a9dd148ffa1783b68ab6f518 /src/nvim/ascii.h | |
parent | 0dfb4e2765c833557eb78ebee029e9b6a8c8bd26 (diff) | |
parent | c266c2f36ea56220268d2b19364e28815e338c2f (diff) | |
download | rneovim-8ed0a0d4dbe1575a0a3bca0f6e8034bfb380b1ef.tar.gz rneovim-8ed0a0d4dbe1575a0a3bca0f6e8034bfb380b1ef.tar.bz2 rneovim-8ed0a0d4dbe1575a0a3bca0f6e8034bfb380b1ef.zip |
Merge pull request #14094 from erw7/improve-get-bg
tui: improve support for tmux, GNU Screen
Diffstat (limited to 'src/nvim/ascii.h')
-rw-r--r-- | src/nvim/ascii.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/ascii.h b/src/nvim/ascii.h index f41068ea70..7e4dee3d34 100644 --- a/src/nvim/ascii.h +++ b/src/nvim/ascii.h @@ -31,7 +31,9 @@ #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 |