comparison src/optiondefs.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 33a67d1dcaf0
children d6827bd31d1d
comparison
equal deleted inserted replaced
20618:8b79d6353530 20619:68c206d3a251
2922 (char_u *)&vvv, PV_NONE, \ 2922 (char_u *)&vvv, PV_NONE, \
2923 {(char_u *)"", (char_u *)0L} SCTX_INIT}, 2923 {(char_u *)"", (char_u *)0L} SCTX_INIT},
2924 2924
2925 p_term("t_AB", T_CAB) 2925 p_term("t_AB", T_CAB)
2926 p_term("t_AF", T_CAF) 2926 p_term("t_AF", T_CAF)
2927 p_term("t_AU", T_CAU)
2927 p_term("t_AL", T_CAL) 2928 p_term("t_AL", T_CAL)
2928 p_term("t_al", T_AL) 2929 p_term("t_al", T_AL)
2929 p_term("t_bc", T_BC) 2930 p_term("t_bc", T_BC)
2930 p_term("t_BE", T_BE) 2931 p_term("t_BE", T_BE)
2931 p_term("t_BD", T_BD) 2932 p_term("t_BD", T_BD)
3000 p_term("t_xs", T_XS) 3001 p_term("t_xs", T_XS)
3001 p_term("t_ZH", T_CZH) 3002 p_term("t_ZH", T_CZH)
3002 p_term("t_ZR", T_CZR) 3003 p_term("t_ZR", T_CZR)
3003 p_term("t_8f", T_8F) 3004 p_term("t_8f", T_8F)
3004 p_term("t_8b", T_8B) 3005 p_term("t_8b", T_8B)
3006 p_term("t_8u", T_8U)
3005 3007
3006 // terminal key codes are not in here 3008 // terminal key codes are not in here
3007 3009
3008 // end marker 3010 // end marker
3009 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL} SCTX_INIT} 3011 {NULL, NULL, 0, NULL, PV_NONE, {NULL, NULL} SCTX_INIT}