comparison src/term.h @ 20619:68c206d3a251 v8.2.0863

patch 8.2.0863: cannot set a separate color for underline/undercurl Commit: https://github.com/vim/vim/commit/e023e88bed3f2e0a7ea4cf10cac2de80bc9c271c Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 31 16:42:30 2020 +0200 patch 8.2.0863: cannot set a separate color for underline/undercurl Problem: Cannot set a separate color for underline/undercurl. Solution: Add the t_AU and t_8u termcap codes. (Timur Celik, closes https://github.com/vim/vim/issues/6011)
author Bram Moolenaar <Bram@vim.org>
date Sun, 31 May 2020 16:45:03 +0200
parents d4b2a8675b78
children f98939164e91
comparison
equal deleted inserted replaced
20618:8b79d6353530 20619:68c206d3a251
76 KS_XS, // standout not erased by overwriting (hpterm) 76 KS_XS, // standout not erased by overwriting (hpterm)
77 KS_XN, // newline glitch 77 KS_XN, // newline glitch
78 KS_MB, // blink mode 78 KS_MB, // blink mode
79 KS_CAF, // set foreground color (ANSI) 79 KS_CAF, // set foreground color (ANSI)
80 KS_CAB, // set background color (ANSI) 80 KS_CAB, // set background color (ANSI)
81 KS_CAU, // set underline color (ANSI)
81 KS_LE, // cursor left (mostly backspace) 82 KS_LE, // cursor left (mostly backspace)
82 KS_ND, // cursor right 83 KS_ND, // cursor right
83 KS_CIS, // set icon text start 84 KS_CIS, // set icon text start
84 KS_CIE, // set icon text end 85 KS_CIE, // set icon text end
85 KS_CSC, // set cursor color start 86 KS_CSC, // set cursor color start
98 KS_CSV, // scroll region vertical 99 KS_CSV, // scroll region vertical
99 KS_OP, // original color pair 100 KS_OP, // original color pair
100 KS_U7, // request cursor position 101 KS_U7, // request cursor position
101 KS_8F, // set foreground color (RGB) 102 KS_8F, // set foreground color (RGB)
102 KS_8B, // set background color (RGB) 103 KS_8B, // set background color (RGB)
104 KS_8U, // set underline color (RGB)
103 KS_CBE, // enable bracketed paste mode 105 KS_CBE, // enable bracketed paste mode
104 KS_CBD, // disable bracketed paste mode 106 KS_CBD, // disable bracketed paste mode
105 KS_CPS, // start of bracketed paste 107 KS_CPS, // start of bracketed paste
106 KS_CPE, // end of bracketed paste 108 KS_CPE, // end of bracketed paste
107 KS_CST, // save window title 109 KS_CST, // save window title
177 #define T_XS (TERM_STR(KS_XS)) // standout not erased by overwriting 179 #define T_XS (TERM_STR(KS_XS)) // standout not erased by overwriting
178 #define T_XN (TERM_STR(KS_XN)) // newline glitch 180 #define T_XN (TERM_STR(KS_XN)) // newline glitch
179 #define T_MB (TERM_STR(KS_MB)) // blink mode 181 #define T_MB (TERM_STR(KS_MB)) // blink mode
180 #define T_CAF (TERM_STR(KS_CAF)) // set foreground color (ANSI) 182 #define T_CAF (TERM_STR(KS_CAF)) // set foreground color (ANSI)
181 #define T_CAB (TERM_STR(KS_CAB)) // set background color (ANSI) 183 #define T_CAB (TERM_STR(KS_CAB)) // set background color (ANSI)
184 #define T_CAU (TERM_STR(KS_CAU)) // set underline color (ANSI)
182 #define T_LE (TERM_STR(KS_LE)) // cursor left 185 #define T_LE (TERM_STR(KS_LE)) // cursor left
183 #define T_ND (TERM_STR(KS_ND)) // cursor right 186 #define T_ND (TERM_STR(KS_ND)) // cursor right
184 #define T_CIS (TERM_STR(KS_CIS)) // set icon text start 187 #define T_CIS (TERM_STR(KS_CIS)) // set icon text start
185 #define T_CIE (TERM_STR(KS_CIE)) // set icon text end 188 #define T_CIE (TERM_STR(KS_CIE)) // set icon text end
186 #define T_TS (TERM_STR(KS_TS)) // set window title start 189 #define T_TS (TERM_STR(KS_TS)) // set window title start
198 #define T_RBG (TERM_STR(KS_RBG)) // request background RGB 201 #define T_RBG (TERM_STR(KS_RBG)) // request background RGB
199 #define T_OP (TERM_STR(KS_OP)) // original color pair 202 #define T_OP (TERM_STR(KS_OP)) // original color pair
200 #define T_U7 (TERM_STR(KS_U7)) // request cursor position 203 #define T_U7 (TERM_STR(KS_U7)) // request cursor position
201 #define T_8F (TERM_STR(KS_8F)) // set foreground color (RGB) 204 #define T_8F (TERM_STR(KS_8F)) // set foreground color (RGB)
202 #define T_8B (TERM_STR(KS_8B)) // set background color (RGB) 205 #define T_8B (TERM_STR(KS_8B)) // set background color (RGB)
206 #define T_8U (TERM_STR(KS_8U)) // set underline color (RGB)
203 #define T_BE (TERM_STR(KS_CBE)) // enable bracketed paste mode 207 #define T_BE (TERM_STR(KS_CBE)) // enable bracketed paste mode
204 #define T_BD (TERM_STR(KS_CBD)) // disable bracketed paste mode 208 #define T_BD (TERM_STR(KS_CBD)) // disable bracketed paste mode
205 #define T_PS (TERM_STR(KS_CPS)) // start of bracketed paste 209 #define T_PS (TERM_STR(KS_CPS)) // start of bracketed paste
206 #define T_PE (TERM_STR(KS_CPE)) // end of bracketed paste 210 #define T_PE (TERM_STR(KS_CPE)) // end of bracketed paste
207 #define T_CST (TERM_STR(KS_CST)) // save window title 211 #define T_CST (TERM_STR(KS_CST)) // save window title