comparison src/option.h @ 9852:4eea48b76d03 v7.4.2201

commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 12 18:29:59 2016 +0200 patch 7.4.2201 Problem: The sign column disappears when the last sign is deleted. Solution: Add the 'signcolumn' option. (Christian Brabandt)
author Christian Brabandt <cb@256bit.org>
date Fri, 12 Aug 2016 18:45:06 +0200
parents b193bdb6ea25
children bb00c661b3a4
comparison
equal deleted inserted replaced
9851:eafd017d8a5a 9852:4eea48b76d03
631 EXTERN int p_magic; /* 'magic' */ 631 EXTERN int p_magic; /* 'magic' */
632 #ifdef FEAT_QUICKFIX 632 #ifdef FEAT_QUICKFIX
633 EXTERN char_u *p_mef; /* 'makeef' */ 633 EXTERN char_u *p_mef; /* 'makeef' */
634 EXTERN char_u *p_mp; /* 'makeprg' */ 634 EXTERN char_u *p_mp; /* 'makeprg' */
635 #endif 635 #endif
636 #ifdef FEAT_SIGNS
637 EXTERN char_u *p_scl; /* signcolumn */
638 #endif
636 #ifdef FEAT_SYN_HL 639 #ifdef FEAT_SYN_HL
637 EXTERN char_u *p_cc; /* 'colorcolumn' */ 640 EXTERN char_u *p_cc; /* 'colorcolumn' */
638 EXTERN int p_cc_cols[256]; /* array for 'colorcolumn' columns */ 641 EXTERN int p_cc_cols[256]; /* array for 'colorcolumn' columns */
639 #endif 642 #endif
640 EXTERN long p_mat; /* 'matchtime' */ 643 EXTERN long p_mat; /* 'matchtime' */
1171 #ifdef FEAT_WINDOWS 1174 #ifdef FEAT_WINDOWS
1172 , WV_WFH 1175 , WV_WFH
1173 , WV_WFW 1176 , WV_WFW
1174 #endif 1177 #endif
1175 , WV_WRAP 1178 , WV_WRAP
1179 #ifdef FEAT_SIGNS
1180 , WV_SCL
1181 #endif
1176 , WV_COUNT /* must be the last one */ 1182 , WV_COUNT /* must be the last one */
1177 }; 1183 };
1178 1184
1179 /* Value for b_p_ul indicating the global value must be used. */ 1185 /* Value for b_p_ul indicating the global value must be used. */
1180 #define NO_LOCAL_UNDOLEVEL -123456 1186 #define NO_LOCAL_UNDOLEVEL -123456