diff 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
line wrap: on
line diff
--- a/src/structs.h
+++ b/src/structs.h
@@ -3207,6 +3207,7 @@ struct window_S
 #endif
 #ifdef FEAT_SYN_HL
     int		*w_p_cc_cols;	    // array of columns to highlight or NULL
+    char_u	w_p_culopt_flags;   // flags for cursorline highlighting
 #endif
 #ifdef FEAT_LINEBREAK
     int		w_p_brimin;	    // minimum width for breakindent
@@ -3288,7 +3289,6 @@ struct window_S
     qf_info_T	*w_llist_ref;
 #endif
 
-
 #ifdef FEAT_MZSCHEME
     void	*w_mzscheme_ref;	// The MzScheme value for this window
 #endif