comparison src/feature.h @ 18763:49b78d6465e5 v8.1.2371

patch 8.1.2371: FEAT_TEXT_PROP is a confusing name Commit: https://github.com/vim/vim/commit/05ad5ff0ab34ed9a5296dedd420ca81698b8ce22 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 30 22:48:27 2019 +0100 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name Problem: FEAT_TEXT_PROP is a confusing name. Solution: Use FEAT_PROP_POPUP. (Naruhiko Nishino, closes https://github.com/vim/vim/issues/5291)
author Bram Moolenaar <Bram@vim.org>
date Sat, 30 Nov 2019 23:00:05 +0100
parents 6e3dc2d630c2
children ccd16426a1f9
comparison
equal deleted inserted replaced
18762:19582783e5ad 18763:49b78d6465e5
1149 // simplify the code a bit by enabling +syntax when +terminal is enabled 1149 // simplify the code a bit by enabling +syntax when +terminal is enabled
1150 # define FEAT_SYN_HL 1150 # define FEAT_SYN_HL
1151 #endif 1151 #endif
1152 1152
1153 /* 1153 /*
1154 * +textprop Text properties and popup windows 1154 * +textprop and +popupwin Text PROPerties and POPUP windows
1155 */ 1155 */
1156 #if defined(FEAT_EVAL) && defined(FEAT_SYN_HL) 1156 #if defined(FEAT_EVAL) && defined(FEAT_SYN_HL)
1157 # define FEAT_TEXT_PROP 1157 # define FEAT_PROP_POPUP
1158 #endif 1158 #endif
1159 1159
1160 #if defined(FEAT_SYN_HL) && defined(FEAT_RELTIME) 1160 #if defined(FEAT_SYN_HL) && defined(FEAT_RELTIME)
1161 // Can limit syntax highlight time to 'redrawtime'. 1161 // Can limit syntax highlight time to 'redrawtime'.
1162 # define SYN_TIME_LIMIT 1 1162 # define SYN_TIME_LIMIT 1
1165 1165
1166 /* 1166 /*
1167 * +signs Allow signs to be displayed to the left of text lines. 1167 * +signs Allow signs to be displayed to the left of text lines.
1168 * Adds the ":sign" command. 1168 * Adds the ":sign" command.
1169 */ 1169 */
1170 #if defined(FEAT_BIG) || defined(FEAT_NETBEANS_INTG) || defined(FEAT_TEXT_PROP) 1170 #if defined(FEAT_BIG) || defined(FEAT_NETBEANS_INTG) || defined(FEAT_PROP_POPUP)
1171 # define FEAT_SIGNS 1171 # define FEAT_SIGNS
1172 # if ((defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)) \ 1172 # if ((defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)) \
1173 && defined(HAVE_X11_XPM_H)) \ 1173 && defined(HAVE_X11_XPM_H)) \
1174 || defined(FEAT_GUI_GTK) \ 1174 || defined(FEAT_GUI_GTK) \
1175 || (defined(MSWIN) && defined(FEAT_GUI)) 1175 || (defined(MSWIN) && defined(FEAT_GUI))