comparison src/optiondefs.h @ 18068:1101eacc1444 v8.1.2029

patch 8.1.2029: cannot control 'cursorline' highlighting well Commit: https://github.com/vim/vim/commit/017ba07fa2cdc578245618717229444fd50c470d Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 14 21:01:23 2019 +0200 patch 8.1.2029: cannot control 'cursorline' highlighting well Problem: Cannot control 'cursorline' highlighting well. Solution: Add "screenline". (Christian Brabandt, closes https://github.com/vim/vim/issues/4933)
author Bram Moolenaar <Bram@vim.org>
date Sat, 14 Sep 2019 21:15:04 +0200
parents 88b5c2b4e3d2
children df5778d73320
comparison
equal deleted inserted replaced
18067:9e20b59dd8ab 18068:1101eacc1444
956 (char_u *)VAR_WIN, PV_CUL, 956 (char_u *)VAR_WIN, PV_CUL,
957 #else 957 #else
958 (char_u *)NULL, PV_NONE, 958 (char_u *)NULL, PV_NONE,
959 #endif 959 #endif
960 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, 960 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT},
961 {"cursorlineopt", "culopt", P_STRING|P_VI_DEF|P_RWIN, 961 {"cursorlineopt", "culopt", P_STRING|P_VI_DEF|P_RWIN|P_ONECOMMA|P_NODUP,
962 #ifdef FEAT_SYN_HL 962 #ifdef FEAT_SYN_HL
963 (char_u *)VAR_WIN, PV_CULOPT, 963 (char_u *)VAR_WIN, PV_CULOPT,
964 #else 964 #else
965 (char_u *)NULL, PV_NONE, 965 (char_u *)NULL, PV_NONE,
966 #endif 966 #endif
3198 static char *(p_scl_values[]) = {"yes", "no", "auto", "number", NULL}; 3198 static char *(p_scl_values[]) = {"yes", "no", "auto", "number", NULL};
3199 #endif 3199 #endif
3200 #if defined(MSWIN) && defined(FEAT_TERMINAL) 3200 #if defined(MSWIN) && defined(FEAT_TERMINAL)
3201 static char *(p_twt_values[]) = {"winpty", "conpty", "", NULL}; 3201 static char *(p_twt_values[]) = {"winpty", "conpty", "", NULL};
3202 #endif 3202 #endif
3203 #ifdef FEAT_SYN_HL
3204 static char *(p_culopt_values[]) = {"line", "number", "both", NULL};
3205 #endif