comparison src/feature.h @ 29900:a6721cafbc74 v9.0.0288

patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed Commit: https://github.com/vim/vim/commit/9198de3ae2bd20ac51d580c44f2b43c282c1e773 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 27 21:30:03 2022 +0100 patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed Problem: When 'cmdheight' is zero some messages are not displayed. Solution: Use a popup notification window.
author Bram Moolenaar <Bram@vim.org>
date Sat, 27 Aug 2022 22:45:03 +0200
parents 1342ee83ab97
children f0952e40de8e
comparison
equal deleted inserted replaced
29899:d9726370e577 29900:a6721cafbc74
1062 */ 1062 */
1063 #if defined(FEAT_EVAL) && defined(FEAT_SYN_HL) 1063 #if defined(FEAT_EVAL) && defined(FEAT_SYN_HL)
1064 # define FEAT_PROP_POPUP 1064 # define FEAT_PROP_POPUP
1065 #endif 1065 #endif
1066 1066
1067 /*
1068 * +message_window use a popup for messages when 'cmdheight' is zero
1069 */
1070 #if defined(FEAT_PROP_POPUP) && defined(FEAT_TIMERS)
1071 # define HAS_MESSAGE_WINDOW
1072 #endif
1073
1067 #if defined(FEAT_SYN_HL) && defined(FEAT_RELTIME) 1074 #if defined(FEAT_SYN_HL) && defined(FEAT_RELTIME)
1068 // Can limit syntax highlight time to 'redrawtime'. 1075 // Can limit syntax highlight time to 'redrawtime'.
1069 # define SYN_TIME_LIMIT 1 1076 # define SYN_TIME_LIMIT 1
1070 #endif 1077 #endif
1071 1078