aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ascii.h
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2017-03-05 00:14:11 +0300
committerZyX <kp-pav@yandex.ru>2017-03-29 10:08:45 +0300
commit2c8ad276523489223d2d804075a19367280b0f10 (patch)
treec7c8c720db532d4fb225d06321c5a64a9847750c /src/nvim/ascii.h
parentc6c48e8672ab6adbf78453e2b133fe3bd2ee1eb5 (diff)
downloadrneovim-2c8ad276523489223d2d804075a19367280b0f10.tar.gz
rneovim-2c8ad276523489223d2d804075a19367280b0f10.tar.bz2
rneovim-2c8ad276523489223d2d804075a19367280b0f10.zip
ascii: Readd DEL_STR define
Diffstat (limited to 'src/nvim/ascii.h')
-rw-r--r--src/nvim/ascii.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ascii.h b/src/nvim/ascii.h
index 37b83efb61..adde91f9ec 100644
--- a/src/nvim/ascii.h
+++ b/src/nvim/ascii.h
@@ -26,6 +26,7 @@
#define ESC '\033'
#define ESC_STR "\033"
#define DEL 0x7f
+#define DEL_STR "\177"
#define CSI 0x9b // Control Sequence Introducer
#define CSI_STR "\233"
#define DCS 0x90 /* Device Control String */