diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-02-10 19:20:37 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-02-10 19:20:37 +0100 |
commit | 494838a3fec2fb1abcac6256271810a762225bed (patch) | |
tree | bc53a26eb9be351c99fa332179efd8a97888a498 /runtime/doc/term.txt | |
parent | eb2928595bca45cb37f0906c76896dce806b5543 (diff) | |
download | vim-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 'runtime/doc/term.txt')
-rw-r--r-- | runtime/doc/term.txt | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/runtime/doc/term.txt b/runtime/doc/term.txt index 2076e8342..842f69b65 100644 --- a/runtime/doc/term.txt +++ b/runtime/doc/term.txt @@ -224,10 +224,11 @@ The options are listed below. The associated termcap code is always equal to the last two characters of the option name. Only one termcap code is required: Cursor motion, 't_cm'. -The options 't_da', 't_db', 't_ms', 't_xs' represent flags in the termcap. -When the termcap flag is present, the option will be set to "y". But any -non-empty string means that the flag is set. An empty string means that the -flag is not set. 't_CS' works like this too, but it isn't a termcap flag. +The options 't_da', 't_db', 't_ms', 't_xs', 't_xn' represent flags in the +termcap. When the termcap flag is present, the option will be set to "y". +But any non-empty string means that the flag is set. An empty string means +that the flag is not set. 't_CS' works like this too, but it isn't a termcap +flag. OUTPUT CODES option meaning ~ @@ -281,6 +282,9 @@ OUTPUT CODES t_vs cursor very visible *t_vs* *'t_vs'* *t_xs* *'t_xs'* t_xs if non-empty, standout not erased by overwriting (hpterm) + *t_xn* *'t_xn'* + t_xn if non-empty, character writing at the last cell of screen + didn't causes scrolling t_ZH italics mode *t_ZH* *'t_ZH'* t_ZR italics end *t_ZR* *'t_ZR'* |