comparison src/screen.c @ 29881:0cc9a3001717 v9.0.0279

patch 9.0.0279: the tiny version has the popup menu but not 'wildmenu' Commit: https://github.com/vim/vim/commit/5416232707349d5f24294178f47544f2024b73ed Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 26 16:58:51 2022 +0100 patch 9.0.0279: the tiny version has the popup menu but not 'wildmenu' Problem: The tiny version has the popup menu but not 'wildmenu'. Solution: Graduate the wildmenu feature.
author Bram Moolenaar <Bram@vim.org>
date Fri, 26 Aug 2022 18:00:05 +0200
parents 68ef14b21d01
children a6721cafbc74
comparison
equal deleted inserted replaced
29880:bd3aac5d1d9e 29881:0cc9a3001717
874 W_ENDCOL(wp), W_ENDCOL(wp) + 1, 874 W_ENDCOL(wp), W_ENDCOL(wp) + 1,
875 c, ' ', hl); 875 c, ' ', hl);
876 } 876 }
877 } 877 }
878 878
879 #ifdef FEAT_WILDMENU
880 static int skip_status_match_char(expand_T *xp, char_u *s); 879 static int skip_status_match_char(expand_T *xp, char_u *s);
881 880
882 /* 881 /*
883 * Get the length of an item as it will be shown in the status line. 882 * Get the length of an item as it will be shown in the status line.
884 */ 883 */
1142 } 1141 }
1143 1142
1144 win_redraw_last_status(topframe); 1143 win_redraw_last_status(topframe);
1145 vim_free(buf); 1144 vim_free(buf);
1146 } 1145 }
1147 #endif
1148 1146
1149 /* 1147 /*
1150 * Return TRUE if the status line of window "wp" is connected to the status 1148 * Return TRUE if the status line of window "wp" is connected to the status
1151 * line of the window right of it. If not, then it's a vertical separator. 1149 * line of the window right of it. If not, then it's a vertical separator.
1152 * Only call if (wp->w_vsep_width != 0). 1150 * Only call if (wp->w_vsep_width != 0).