comparison src/structs.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 6650e3dff8d4
children f57481564f2c
comparison
equal deleted inserted replaced
18067:9e20b59dd8ab 18068:1101eacc1444
3205 long_u w_p_fde_flags; // flags for 'foldexpr' 3205 long_u w_p_fde_flags; // flags for 'foldexpr'
3206 long_u w_p_fdt_flags; // flags for 'foldtext' 3206 long_u w_p_fdt_flags; // flags for 'foldtext'
3207 #endif 3207 #endif
3208 #ifdef FEAT_SYN_HL 3208 #ifdef FEAT_SYN_HL
3209 int *w_p_cc_cols; // array of columns to highlight or NULL 3209 int *w_p_cc_cols; // array of columns to highlight or NULL
3210 char_u w_p_culopt_flags; // flags for cursorline highlighting
3210 #endif 3211 #endif
3211 #ifdef FEAT_LINEBREAK 3212 #ifdef FEAT_LINEBREAK
3212 int w_p_brimin; // minimum width for breakindent 3213 int w_p_brimin; // minimum width for breakindent
3213 int w_p_brishift; // additional shift for breakindent 3214 int w_p_brishift; // additional shift for breakindent
3214 int w_p_brisbr; // sbr in 'briopt' 3215 int w_p_brisbr; // sbr in 'briopt'
3285 * Location list reference used in the location list window. 3286 * Location list reference used in the location list window.
3286 * In a non-location list window, w_llist_ref is NULL. 3287 * In a non-location list window, w_llist_ref is NULL.
3287 */ 3288 */
3288 qf_info_T *w_llist_ref; 3289 qf_info_T *w_llist_ref;
3289 #endif 3290 #endif
3290
3291 3291
3292 #ifdef FEAT_MZSCHEME 3292 #ifdef FEAT_MZSCHEME
3293 void *w_mzscheme_ref; // The MzScheme value for this window 3293 void *w_mzscheme_ref; // The MzScheme value for this window
3294 #endif 3294 #endif
3295 3295