summaryrefslogtreecommitdiff
path: root/src/term.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2015-02-10 19:20:37 +0100
committerBram Moolenaar <Bram@vim.org>2015-02-10 19:20:37 +0100
commit494838a3fec2fb1abcac6256271810a762225bed (patch)
treebc53a26eb9be351c99fa332179efd8a97888a498 /src/term.h
parenteb2928595bca45cb37f0906c76896dce806b5543 (diff)
downloadvim-git-494838a3fec2fb1abcac6256271810a762225bed.tar.gz
updated for version 7.4.627v7.4.627
Problem: The last screen cell is not updated. Solution: Respect the "tn" termcap feature. (Hayaki Saito)
Diffstat (limited to 'src/term.h')
-rw-r--r--src/term.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/term.h b/src/term.h
index 22b60b133..28390a285 100644
--- a/src/term.h
+++ b/src/term.h
@@ -66,6 +66,7 @@ enum SpecialKey
KS_CSF, /* set foreground color */
KS_CSB, /* set background color */
KS_XS, /* standout not erased by overwriting (hpterm) */
+ KS_XN, /* newline glitch */
KS_MB, /* blink mode */
KS_CAF, /* set foreground color (ANSI) */
KS_CAB, /* set background color (ANSI) */
@@ -144,6 +145,7 @@ extern char_u *(term_strings[]); /* current terminal strings */
#define T_CSF (term_str(KS_CSF)) /* set foreground color */
#define T_CSB (term_str(KS_CSB)) /* set background color */
#define T_XS (term_str(KS_XS)) /* standout not erased by overwriting */
+#define T_XN (term_str(KS_XN)) /* newline glitch */
#define T_MB (term_str(KS_MB)) /* blink mode */
#define T_CAF (term_str(KS_CAF)) /* set foreground color (ANSI) */
#define T_CAB (term_str(KS_CAB)) /* set background color (ANSI) */