blob: b6cc9bd91d5556d569508c377dff2bf5d96e47be [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
Bram Moolenaar7528d1f2019-09-19 23:06:20 +020011 * screen.c: Lower level code for displaying on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +000012 *
13 * Output to the screen (console, terminal emulator or GUI window) is minimized
14 * by remembering what is already on the screen, and only updating the parts
15 * that changed.
16 *
17 * ScreenLines[off] Contains a copy of the whole screen, as it is currently
18 * displayed (excluding text written by external commands).
19 * ScreenAttrs[off] Contains the associated attributes.
20 * LineOffset[row] Contains the offset into ScreenLines*[] and ScreenAttrs[]
21 * for each line.
22 * LineWraps[row] Flag for each line whether it wraps to the next line.
23 *
24 * For double-byte characters, two consecutive bytes in ScreenLines[] can form
25 * one character which occupies two display cells.
26 * For UTF-8 a multi-byte character is converted to Unicode and stored in
27 * ScreenLinesUC[]. ScreenLines[] contains the first byte only. For an ASCII
Bram Moolenaar70c49c12010-03-23 15:36:35 +010028 * character without composing chars ScreenLinesUC[] will be 0 and
29 * ScreenLinesC[][] is not used. When the character occupies two display
30 * cells the next byte in ScreenLines[] is 0.
Bram Moolenaar362e1a32006-03-06 23:29:24 +000031 * ScreenLinesC[][] contain up to 'maxcombine' composing characters
Bram Moolenaar70c49c12010-03-23 15:36:35 +010032 * (drawn on top of the first character). There is 0 after the last one used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000033 * ScreenLines2[] is only used for euc-jp to store the second byte if the
34 * first byte is 0x8e (single-width character).
35 *
36 * The screen_*() functions write to the screen and handle updating
37 * ScreenLines[].
Bram Moolenaar071d4272004-06-13 20:20:40 +000038 */
39
40#include "vim.h"
41
42/*
43 * The attributes that are actually active for writing to the screen.
44 */
45static int screen_attr = 0;
46
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010047static void screen_char_2(unsigned off, int row, int col);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010048static void screenclear2(void);
Bram Moolenaarcfce7172017-08-17 20:31:48 +020049static void lineclear(unsigned off, int width, int attr);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010050static void lineinvalid(unsigned off, int width);
Bram Moolenaarcfce7172017-08-17 20:31:48 +020051static int win_do_lines(win_T *wp, int row, int line_count, int mayclear, int del, int clear_attr);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010052static void win_rest_invalid(win_T *wp);
53static void msg_pos_mode(void);
54static void recording_mode(int attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000055
Bram Moolenaar63d9e732019-12-05 21:10:38 +010056// Ugly global: overrule attribute used by screen_char()
Bram Moolenaar071d4272004-06-13 20:20:40 +000057static int screen_char_attr = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000058
Bram Moolenaar860cae12010-06-05 23:22:07 +020059#if defined(FEAT_CONCEAL) || defined(PROTO)
Bram Moolenaarf5963f72010-07-23 22:10:27 +020060/*
61 * Return TRUE if the cursor line in window "wp" may be concealed, according
62 * to the 'concealcursor' option.
63 */
64 int
Bram Moolenaar05540972016-01-30 20:31:25 +010065conceal_cursor_line(win_T *wp)
Bram Moolenaarf5963f72010-07-23 22:10:27 +020066{
67 int c;
68
69 if (*wp->w_p_cocu == NUL)
70 return FALSE;
71 if (get_real_state() & VISUAL)
72 c = 'v';
73 else if (State & INSERT)
74 c = 'i';
75 else if (State & NORMAL)
76 c = 'n';
Bram Moolenaarca8c9862010-07-24 15:00:38 +020077 else if (State & CMDLINE)
78 c = 'c';
Bram Moolenaarf5963f72010-07-23 22:10:27 +020079 else
80 return FALSE;
81 return vim_strchr(wp->w_p_cocu, c) != NULL;
82}
83
84/*
85 * Check if the cursor line needs to be redrawn because of 'concealcursor'.
86 */
87 void
Bram Moolenaarb9464822018-05-10 15:09:49 +020088conceal_check_cursor_line(void)
Bram Moolenaarf5963f72010-07-23 22:10:27 +020089{
90 if (curwin->w_p_cole > 0 && conceal_cursor_line(curwin))
91 {
92 need_cursor_line_redraw = TRUE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +010093 // Need to recompute cursor column, e.g., when starting Visual mode
94 // without concealing.
Bram Moolenaarf5963f72010-07-23 22:10:27 +020095 curs_columns(TRUE);
96 }
97}
Bram Moolenaar071d4272004-06-13 20:20:40 +000098#endif
99
Bram Moolenaar60cdb302019-05-27 21:54:10 +0200100/*
101 * Get 'wincolor' attribute for window "wp". If not set and "wp" is a popup
102 * window then get the "Pmenu" highlight attribute.
103 */
Bram Moolenaara540f8a2019-06-14 19:23:57 +0200104 int
Bram Moolenaar60cdb302019-05-27 21:54:10 +0200105get_wcr_attr(win_T *wp)
106{
107 int wcr_attr = 0;
108
109 if (*wp->w_p_wcr != NUL)
110 wcr_attr = syn_name2attr(wp->w_p_wcr);
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100111#ifdef FEAT_PROP_POPUP
Bram Moolenaarc363fe12019-08-04 18:13:46 +0200112 else if (WIN_IS_POPUP(wp))
Bram Moolenaar62a0cb42019-08-18 16:35:23 +0200113 {
114 if (wp->w_popup_flags & POPF_INFO)
115 wcr_attr = HL_ATTR(HLF_PSI); // PmenuSel
116 else
117 wcr_attr = HL_ATTR(HLF_PNI); // Pmenu
118 }
Bram Moolenaar60cdb302019-05-27 21:54:10 +0200119#endif
120 return wcr_attr;
121}
122
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123/*
Bram Moolenaar8ee4c012019-03-29 18:08:18 +0100124 * Call screen_fill() with the columns adjusted for 'rightleft' if needed.
125 * Return the new offset.
126 */
127 static int
128screen_fill_end(
129 win_T *wp,
130 int c1,
131 int c2,
132 int off,
133 int width,
134 int row,
135 int endrow,
136 int attr)
137{
138 int nn = off + width;
139
140 if (nn > wp->w_width)
141 nn = wp->w_width;
142#ifdef FEAT_RIGHTLEFT
143 if (wp->w_p_rl)
144 {
145 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
146 W_ENDCOL(wp) - nn, (int)W_ENDCOL(wp) - off,
147 c1, c2, attr);
148 }
149 else
150#endif
151 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
152 wp->w_wincol + off, (int)wp->w_wincol + nn,
153 c1, c2, attr);
154 return nn;
155}
156
157/*
158 * Clear lines near the end the window and mark the unused lines with "c1".
159 * use "c2" as the filler character.
160 * When "draw_margin" is TRUE then draw the sign, fold and number columns.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 */
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200162 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100163win_draw_end(
164 win_T *wp,
165 int c1,
166 int c2,
Bram Moolenaar8ee4c012019-03-29 18:08:18 +0100167 int draw_margin,
Bram Moolenaar05540972016-01-30 20:31:25 +0100168 int row,
169 int endrow,
170 hlf_T hl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172 int n = 0;
Bram Moolenaar193ffd12019-05-25 22:57:30 +0200173 int attr = HL_ATTR(hl);
Bram Moolenaar60cdb302019-05-27 21:54:10 +0200174 int wcr_attr = get_wcr_attr(wp);
Bram Moolenaar193ffd12019-05-25 22:57:30 +0200175
Bram Moolenaar60cdb302019-05-27 21:54:10 +0200176 attr = hl_combine_attr(wcr_attr, attr);
Bram Moolenaar8ee4c012019-03-29 18:08:18 +0100177
178 if (draw_margin)
179 {
Bram Moolenaar1c934292015-01-27 16:39:29 +0100180#ifdef FEAT_FOLDING
Bram Moolenaar8ee4c012019-03-29 18:08:18 +0100181 int fdc = compute_foldcolumn(wp, 0);
182
183 if (fdc > 0)
184 // draw the fold column
185 n = screen_fill_end(wp, ' ', ' ', n, fdc,
Bram Moolenaar193ffd12019-05-25 22:57:30 +0200186 row, endrow, hl_combine_attr(wcr_attr, HL_ATTR(HLF_FC)));
Bram Moolenaar1c934292015-01-27 16:39:29 +0100187#endif
Bram Moolenaar8ee4c012019-03-29 18:08:18 +0100188#ifdef FEAT_SIGNS
189 if (signcolumn_on(wp))
190 // draw the sign column
191 n = screen_fill_end(wp, ' ', ' ', n, 2,
Bram Moolenaar193ffd12019-05-25 22:57:30 +0200192 row, endrow, hl_combine_attr(wcr_attr, HL_ATTR(HLF_SC)));
Bram Moolenaar8ee4c012019-03-29 18:08:18 +0100193#endif
194 if ((wp->w_p_nu || wp->w_p_rnu)
195 && vim_strchr(p_cpo, CPO_NUMCOL) == NULL)
196 // draw the number column
197 n = screen_fill_end(wp, ' ', ' ', n, number_width(wp) + 1,
Bram Moolenaar193ffd12019-05-25 22:57:30 +0200198 row, endrow, hl_combine_attr(wcr_attr, HL_ATTR(HLF_N)));
Bram Moolenaar8ee4c012019-03-29 18:08:18 +0100199 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200
201#ifdef FEAT_RIGHTLEFT
202 if (wp->w_p_rl)
203 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
Bram Moolenaar8ee4c012019-03-29 18:08:18 +0100205 wp->w_wincol, W_ENDCOL(wp) - 1 - n,
Bram Moolenaar193ffd12019-05-25 22:57:30 +0200206 c2, c2, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
Bram Moolenaar8ee4c012019-03-29 18:08:18 +0100208 W_ENDCOL(wp) - 1 - n, W_ENDCOL(wp) - n,
Bram Moolenaar193ffd12019-05-25 22:57:30 +0200209 c1, c2, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210 }
211 else
212#endif
213 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
Bram Moolenaar8ee4c012019-03-29 18:08:18 +0100215 wp->w_wincol + n, (int)W_ENDCOL(wp),
Bram Moolenaar193ffd12019-05-25 22:57:30 +0200216 c1, c2, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217 }
Bram Moolenaar8ee4c012019-03-29 18:08:18 +0100218
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219 set_empty_rows(wp, row);
220}
221
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200222#if defined(FEAT_FOLDING) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223/*
Bram Moolenaar1c934292015-01-27 16:39:29 +0100224 * Compute the width of the foldcolumn. Based on 'foldcolumn' and how much
225 * space is available for window "wp", minus "col".
226 */
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200227 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100228compute_foldcolumn(win_T *wp, int col)
Bram Moolenaar1c934292015-01-27 16:39:29 +0100229{
230 int fdc = wp->w_p_fdc;
231 int wmw = wp == curwin && p_wmw == 0 ? 1 : p_wmw;
Bram Moolenaar02631462017-09-22 15:20:32 +0200232 int wwidth = wp->w_width;
Bram Moolenaar1c934292015-01-27 16:39:29 +0100233
234 if (fdc > wwidth - (col + wmw))
235 fdc = wwidth - (col + wmw);
236 return fdc;
237}
238
239/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240 * Fill the foldcolumn at "p" for window "wp".
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +0000241 * Only to be called when 'foldcolumn' > 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242 */
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200243 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100244fill_foldcolumn(
245 char_u *p,
246 win_T *wp,
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100247 int closed, // TRUE of FALSE
248 linenr_T lnum) // current line number
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249{
250 int i = 0;
251 int level;
252 int first_level;
Bram Moolenaar578b49e2005-09-10 19:22:57 +0000253 int empty;
Bram Moolenaar1c934292015-01-27 16:39:29 +0100254 int fdc = compute_foldcolumn(wp, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100256 // Init to all spaces.
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200257 vim_memset(p, ' ', (size_t)fdc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258
259 level = win_foldinfo.fi_level;
260 if (level > 0)
261 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100262 // If there is only one column put more info in it.
Bram Moolenaar1c934292015-01-27 16:39:29 +0100263 empty = (fdc == 1) ? 0 : 1;
Bram Moolenaar578b49e2005-09-10 19:22:57 +0000264
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100265 // If the column is too narrow, we start at the lowest level that
266 // fits and use numbers to indicated the depth.
Bram Moolenaar1c934292015-01-27 16:39:29 +0100267 first_level = level - fdc - closed + 1 + empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268 if (first_level < 1)
269 first_level = 1;
270
Bram Moolenaar1c934292015-01-27 16:39:29 +0100271 for (i = 0; i + empty < fdc; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272 {
273 if (win_foldinfo.fi_lnum == lnum
274 && first_level + i >= win_foldinfo.fi_low_level)
275 p[i] = '-';
276 else if (first_level == 1)
277 p[i] = '|';
278 else if (first_level + i <= 9)
279 p[i] = '0' + first_level + i;
280 else
281 p[i] = '>';
282 if (first_level + i == level)
283 break;
284 }
285 }
286 if (closed)
Bram Moolenaar1c934292015-01-27 16:39:29 +0100287 p[i >= fdc ? i - 1 : i] = '+';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288}
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100289#endif // FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000291/*
292 * Return if the composing characters at "off_from" and "off_to" differ.
Bram Moolenaar70c49c12010-03-23 15:36:35 +0100293 * Only to be used when ScreenLinesUC[off_from] != 0.
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000294 */
295 static int
Bram Moolenaar05540972016-01-30 20:31:25 +0100296comp_char_differs(int off_from, int off_to)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000297{
298 int i;
299
300 for (i = 0; i < Screen_mco; ++i)
301 {
302 if (ScreenLinesC[i][off_from] != ScreenLinesC[i][off_to])
303 return TRUE;
304 if (ScreenLinesC[i][off_from] == 0)
305 break;
306 }
307 return FALSE;
308}
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000309
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310/*
311 * Check whether the given character needs redrawing:
312 * - the (first byte of the) character is different
313 * - the attributes are different
314 * - the character is multi-byte and the next byte is different
Bram Moolenaar88f3d3a2008-06-21 12:14:30 +0000315 * - the character is two cells wide and the second cell differs.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316 */
317 static int
Bram Moolenaar05540972016-01-30 20:31:25 +0100318char_needs_redraw(int off_from, int off_to, int cols)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319{
320 if (cols > 0
321 && ((ScreenLines[off_from] != ScreenLines[off_to]
322 || ScreenAttrs[off_from] != ScreenAttrs[off_to])
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323 || (enc_dbcs != 0
324 && MB_BYTE2LEN(ScreenLines[off_from]) > 1
325 && (enc_dbcs == DBCS_JPNU && ScreenLines[off_from] == 0x8e
326 ? ScreenLines2[off_from] != ScreenLines2[off_to]
327 : (cols > 1 && ScreenLines[off_from + 1]
328 != ScreenLines[off_to + 1])))
329 || (enc_utf8
330 && (ScreenLinesUC[off_from] != ScreenLinesUC[off_to]
331 || (ScreenLinesUC[off_from] != 0
Bram Moolenaar88f3d3a2008-06-21 12:14:30 +0000332 && comp_char_differs(off_from, off_to))
Bram Moolenaar451cf632012-08-23 18:58:14 +0200333 || ((*mb_off2cells)(off_from, off_from + cols) > 1
334 && ScreenLines[off_from + 1]
Bram Moolenaara12a1612019-01-24 16:39:02 +0100335 != ScreenLines[off_to + 1])))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336 return TRUE;
337 return FALSE;
338}
339
Bram Moolenaarcb8bbe92017-07-16 13:48:22 +0200340#if defined(FEAT_TERMINAL) || defined(PROTO)
341/*
342 * Return the index in ScreenLines[] for the current screen line.
343 */
344 int
345screen_get_current_line_off()
346{
347 return (int)(current_ScreenLine - ScreenLines);
348}
349#endif
350
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100351#ifdef FEAT_PROP_POPUP
Bram Moolenaarc662ec92019-06-23 00:15:57 +0200352/*
353 * Return TRUE if this position has a higher level popup or this cell is
354 * transparent in the current popup.
355 */
356 static int
357blocked_by_popup(int row, int col)
358{
359 int off;
360
361 if (!popup_visible)
362 return FALSE;
363 off = row * screen_Columns + col;
364 return popup_mask[off] > screen_zindex || popup_transparent[off];
365}
366#endif
367
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368/*
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200369 * Reset the highlighting. Used before clearing the screen.
370 */
371 void
372reset_screen_attr(void)
373{
374#ifdef FEAT_GUI
375 if (gui.in_use)
376 // Use a code that will reset gui.highlight_mask in
377 // gui_stop_highlight().
378 screen_attr = HL_ALL + 1;
379 else
380#endif
381 // Use attributes that is very unlikely to appear in text.
382 screen_attr = HL_BOLD | HL_UNDERLINE | HL_INVERSE | HL_STRIKETHROUGH;
383}
384
385/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 * Move one "cooked" screen line to the screen, but only the characters that
387 * have actually changed. Handle insert/delete character.
388 * "coloff" gives the first column on the screen for this line.
389 * "endcol" gives the columns where valid characters are.
390 * "clear_width" is the width of the window. It's > 0 if the rest of the line
391 * needs to be cleared, negative otherwise.
Bram Moolenaar4d784b22019-05-25 19:51:39 +0200392 * "flags" can have bits:
393 * SLF_POPUP popup window
394 * SLF_RIGHTLEFT rightleft window:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395 * When TRUE and "clear_width" > 0, clear columns 0 to "endcol"
396 * When FALSE and "clear_width" > 0, clear columns "endcol" to "clear_width"
397 */
Bram Moolenaarcb8bbe92017-07-16 13:48:22 +0200398 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100399screen_line(
400 int row,
401 int coloff,
402 int endcol,
Bram Moolenaarcb8bbe92017-07-16 13:48:22 +0200403 int clear_width,
Bram Moolenaar4d784b22019-05-25 19:51:39 +0200404 int flags UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405{
406 unsigned off_from;
407 unsigned off_to;
Bram Moolenaar367329b2007-08-30 11:53:22 +0000408 unsigned max_off_from;
409 unsigned max_off_to;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410 int col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411 int hl;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100412 int force = FALSE; // force update rest of the line
413 int redraw_this // bool: does character need redraw?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414#ifdef FEAT_GUI
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100415 = TRUE // For GUI when while-loop empty
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416#endif
417 ;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100418 int redraw_next; // redraw_this for next character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419 int clear_next = FALSE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100420 int char_cells; // 1: normal char
421 // 2: occupies two display cells
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422# define CHAR_CELLS char_cells
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100424 // Check for illegal row and col, just in case.
Bram Moolenaar5ad15df2012-03-16 19:07:58 +0100425 if (row >= Rows)
426 row = Rows - 1;
427 if (endcol > Columns)
428 endcol = Columns;
429
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430# ifdef FEAT_CLIPBOARD
431 clip_may_clear_selection(row, row);
432# endif
433
434 off_from = (unsigned)(current_ScreenLine - ScreenLines);
435 off_to = LineOffset[row] + coloff;
Bram Moolenaar367329b2007-08-30 11:53:22 +0000436 max_off_from = off_from + screen_Columns;
437 max_off_to = LineOffset[row] + screen_Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438
439#ifdef FEAT_RIGHTLEFT
Bram Moolenaar4d784b22019-05-25 19:51:39 +0200440 if (flags & SLF_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100442 // Clear rest first, because it's left of the text.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443 if (clear_width > 0)
444 {
445 while (col <= endcol && ScreenLines[off_to] == ' '
446 && ScreenAttrs[off_to] == 0
Bram Moolenaara12a1612019-01-24 16:39:02 +0100447 && (!enc_utf8 || ScreenLinesUC[off_to] == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448 {
449 ++off_to;
450 ++col;
451 }
452 if (col <= endcol)
453 screen_fill(row, row + 1, col + coloff,
454 endcol + coloff + 1, ' ', ' ', 0);
455 }
456 col = endcol + 1;
457 off_to = LineOffset[row] + col + coloff;
458 off_from += col;
459 endcol = (clear_width > 0 ? clear_width : -clear_width);
460 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100461#endif // FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100463#ifdef FEAT_PROP_POPUP
Bram Moolenaar92e25ab2019-11-26 22:39:10 +0100464 // First char of a popup window may go on top of the right half of a
465 // double-wide character. Clear the left half to avoid it getting the popup
466 // window background color.
Bram Moolenaar927495b2020-11-06 17:58:35 +0100467 if (coloff > 0 && enc_utf8
468 && ScreenLines[off_to] == 0
Bram Moolenaardc0cf1d2020-08-23 15:09:36 +0200469 && ScreenLinesUC[off_to - 1] != 0
470 && (*mb_char2cells)(ScreenLinesUC[off_to - 1]) > 1)
Bram Moolenaar92e25ab2019-11-26 22:39:10 +0100471 {
472 ScreenLines[off_to - 1] = ' ';
473 ScreenLinesUC[off_to - 1] = 0;
474 screen_char(off_to - 1, row, col + coloff - 1);
475 }
476#endif
477
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478 redraw_next = char_needs_redraw(off_from, off_to, endcol - col);
479
480 while (col < endcol)
481 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482 if (has_mbyte && (col + 1 < endcol))
Bram Moolenaar367329b2007-08-30 11:53:22 +0000483 char_cells = (*mb_off2cells)(off_from, max_off_from);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484 else
485 char_cells = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486
487 redraw_this = redraw_next;
488 redraw_next = force || char_needs_redraw(off_from + CHAR_CELLS,
489 off_to + CHAR_CELLS, endcol - col - CHAR_CELLS);
490
491#ifdef FEAT_GUI
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100492 // If the next character was bold, then redraw the current character to
493 // remove any pixels that might have spilt over into us. This only
494 // happens in the GUI.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495 if (redraw_next && gui.in_use)
496 {
497 hl = ScreenAttrs[off_to + CHAR_CELLS];
Bram Moolenaar600dddc2006-03-12 22:05:10 +0000498 if (hl > HL_ALL)
499 hl = syn_attr2attr(hl);
500 if (hl & HL_BOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501 redraw_this = TRUE;
502 }
503#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100504#ifdef FEAT_PROP_POPUP
Bram Moolenaarc662ec92019-06-23 00:15:57 +0200505 if (blocked_by_popup(row, col + coloff))
Bram Moolenaar33796b32019-06-08 16:01:13 +0200506 redraw_this = FALSE;
507#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508 if (redraw_this)
509 {
510 /*
511 * Special handling when 'xs' termcap flag set (hpterm):
512 * Attributes for characters are stored at the position where the
513 * cursor is when writing the highlighting code. The
514 * start-highlighting code must be written with the cursor on the
515 * first highlighted character. The stop-highlighting code must
516 * be written with the cursor just after the last highlighted
517 * character.
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100518 * Overwriting a character doesn't remove its highlighting. Need
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519 * to clear the rest of the line, and force redrawing it
520 * completely.
521 */
522 if ( p_wiv
523 && !force
524#ifdef FEAT_GUI
525 && !gui.in_use
526#endif
527 && ScreenAttrs[off_to] != 0
528 && ScreenAttrs[off_from] != ScreenAttrs[off_to])
529 {
530 /*
531 * Need to remove highlighting attributes here.
532 */
533 windgoto(row, col + coloff);
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100534 out_str(T_CE); // clear rest of this screen line
535 screen_start(); // don't know where cursor is now
536 force = TRUE; // force redraw of rest of the line
537 redraw_next = TRUE; // or else next char would miss out
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538
539 /*
540 * If the previous character was highlighted, need to stop
541 * highlighting at this character.
542 */
543 if (col + coloff > 0 && ScreenAttrs[off_to - 1] != 0)
544 {
545 screen_attr = ScreenAttrs[off_to - 1];
546 term_windgoto(row, col + coloff);
547 screen_stop_highlight();
548 }
549 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100550 screen_attr = 0; // highlighting has stopped
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 if (enc_dbcs != 0)
553 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100554 // Check if overwriting a double-byte with a single-byte or
555 // the other way around requires another character to be
556 // redrawn. For UTF-8 this isn't needed, because comparing
557 // ScreenLinesUC[] is sufficient.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558 if (char_cells == 1
559 && col + 1 < endcol
Bram Moolenaar367329b2007-08-30 11:53:22 +0000560 && (*mb_off2cells)(off_to, max_off_to) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100562 // Writing a single-cell character over a double-cell
563 // character: need to redraw the next cell.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564 ScreenLines[off_to + 1] = 0;
565 redraw_next = TRUE;
566 }
567 else if (char_cells == 2
568 && col + 2 < endcol
Bram Moolenaar367329b2007-08-30 11:53:22 +0000569 && (*mb_off2cells)(off_to, max_off_to) == 1
570 && (*mb_off2cells)(off_to + 1, max_off_to) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100572 // Writing the second half of a double-cell character over
573 // a double-cell character: need to redraw the second
574 // cell.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 ScreenLines[off_to + 2] = 0;
576 redraw_next = TRUE;
577 }
578
579 if (enc_dbcs == DBCS_JPNU)
580 ScreenLines2[off_to] = ScreenLines2[off_from];
581 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100582 // When writing a single-width character over a double-width
583 // character and at the end of the redrawn text, need to clear out
584 // the right halve of the old character.
585 // Also required when writing the right halve of a double-width
586 // char over the left halve of an existing one.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587 if (has_mbyte && col + char_cells == endcol
588 && ((char_cells == 1
Bram Moolenaar367329b2007-08-30 11:53:22 +0000589 && (*mb_off2cells)(off_to, max_off_to) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590 || (char_cells == 2
Bram Moolenaar367329b2007-08-30 11:53:22 +0000591 && (*mb_off2cells)(off_to, max_off_to) == 1
592 && (*mb_off2cells)(off_to + 1, max_off_to) > 1)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 clear_next = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594
595 ScreenLines[off_to] = ScreenLines[off_from];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596 if (enc_utf8)
597 {
598 ScreenLinesUC[off_to] = ScreenLinesUC[off_from];
599 if (ScreenLinesUC[off_from] != 0)
600 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000601 int i;
602
603 for (i = 0; i < Screen_mco; ++i)
604 ScreenLinesC[i][off_to] = ScreenLinesC[i][off_from];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 }
606 }
607 if (char_cells == 2)
608 ScreenLines[off_to + 1] = ScreenLines[off_from + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609
610#if defined(FEAT_GUI) || defined(UNIX)
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100611 // The bold trick makes a single column of pixels appear in the
612 // next character. When a bold character is removed, the next
613 // character should be redrawn too. This happens for our own GUI
614 // and for some xterms.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 if (
616# ifdef FEAT_GUI
617 gui.in_use
618# endif
619# if defined(FEAT_GUI) && defined(UNIX)
620 ||
621# endif
622# ifdef UNIX
623 term_is_xterm
624# endif
625 )
626 {
627 hl = ScreenAttrs[off_to];
Bram Moolenaar600dddc2006-03-12 22:05:10 +0000628 if (hl > HL_ALL)
629 hl = syn_attr2attr(hl);
630 if (hl & HL_BOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631 redraw_next = TRUE;
632 }
633#endif
634 ScreenAttrs[off_to] = ScreenAttrs[off_from];
Bram Moolenaara12a1612019-01-24 16:39:02 +0100635
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100636 // For simplicity set the attributes of second half of a
637 // double-wide character equal to the first half.
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000638 if (char_cells == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639 ScreenAttrs[off_to + 1] = ScreenAttrs[off_from];
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000640
641 if (enc_dbcs != 0 && char_cells == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 screen_char_2(off_to, row, col + coloff);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 screen_char(off_to, row, col + coloff);
645 }
646 else if ( p_wiv
647#ifdef FEAT_GUI
648 && !gui.in_use
649#endif
650 && col + coloff > 0)
651 {
652 if (ScreenAttrs[off_to] == ScreenAttrs[off_to - 1])
653 {
654 /*
655 * Don't output stop-highlight when moving the cursor, it will
656 * stop the highlighting when it should continue.
657 */
658 screen_attr = 0;
659 }
660 else if (screen_attr != 0)
661 screen_stop_highlight();
662 }
663
664 off_to += CHAR_CELLS;
665 off_from += CHAR_CELLS;
666 col += CHAR_CELLS;
667 }
668
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669 if (clear_next)
670 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100671 // Clear the second half of a double-wide character of which the left
672 // half was overwritten with a single-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 ScreenLines[off_to] = ' ';
674 if (enc_utf8)
675 ScreenLinesUC[off_to] = 0;
676 screen_char(off_to, row, col + coloff);
677 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678
679 if (clear_width > 0
680#ifdef FEAT_RIGHTLEFT
Bram Moolenaar4d784b22019-05-25 19:51:39 +0200681 && !(flags & SLF_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682#endif
683 )
684 {
685#ifdef FEAT_GUI
686 int startCol = col;
687#endif
688
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100689 // blank out the rest of the line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 while (col < clear_width && ScreenLines[off_to] == ' '
691 && ScreenAttrs[off_to] == 0
Bram Moolenaara12a1612019-01-24 16:39:02 +0100692 && (!enc_utf8 || ScreenLinesUC[off_to] == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 {
694 ++off_to;
695 ++col;
696 }
697 if (col < clear_width)
698 {
699#ifdef FEAT_GUI
700 /*
701 * In the GUI, clearing the rest of the line may leave pixels
702 * behind if the first character cleared was bold. Some bold
703 * fonts spill over the left. In this case we redraw the previous
704 * character too. If we didn't skip any blanks above, then we
705 * only redraw if the character wasn't already redrawn anyway.
706 */
Bram Moolenaar9c697322006-10-09 20:11:17 +0000707 if (gui.in_use && (col > startCol || !redraw_this))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 {
709 hl = ScreenAttrs[off_to];
710 if (hl > HL_ALL || (hl & HL_BOLD))
Bram Moolenaar9c697322006-10-09 20:11:17 +0000711 {
712 int prev_cells = 1;
Bram Moolenaara12a1612019-01-24 16:39:02 +0100713
Bram Moolenaar9c697322006-10-09 20:11:17 +0000714 if (enc_utf8)
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100715 // for utf-8, ScreenLines[char_offset + 1] == 0 means
716 // that its width is 2.
Bram Moolenaar9c697322006-10-09 20:11:17 +0000717 prev_cells = ScreenLines[off_to - 1] == 0 ? 2 : 1;
718 else if (enc_dbcs != 0)
719 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100720 // find previous character by counting from first
721 // column and get its width.
Bram Moolenaar9c697322006-10-09 20:11:17 +0000722 unsigned off = LineOffset[row];
Bram Moolenaar367329b2007-08-30 11:53:22 +0000723 unsigned max_off = LineOffset[row] + screen_Columns;
Bram Moolenaar9c697322006-10-09 20:11:17 +0000724
725 while (off < off_to)
726 {
Bram Moolenaar367329b2007-08-30 11:53:22 +0000727 prev_cells = (*mb_off2cells)(off, max_off);
Bram Moolenaar9c697322006-10-09 20:11:17 +0000728 off += prev_cells;
729 }
730 }
731
732 if (enc_dbcs != 0 && prev_cells > 1)
733 screen_char_2(off_to - prev_cells, row,
734 col + coloff - prev_cells);
735 else
Bram Moolenaar9c697322006-10-09 20:11:17 +0000736 screen_char(off_to - prev_cells, row,
737 col + coloff - prev_cells);
738 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 }
740#endif
741 screen_fill(row, row + 1, col + coloff, clear_width + coloff,
742 ' ', ' ', 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 off_to += clear_width - col;
744 col = clear_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745 }
746 }
747
Bram Moolenaar4d784b22019-05-25 19:51:39 +0200748 if (clear_width > 0
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100749#ifdef FEAT_PROP_POPUP
Bram Moolenaar4d784b22019-05-25 19:51:39 +0200750 && !(flags & SLF_POPUP) // no separator for popup window
751#endif
752 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753 {
Bram Moolenaar4d784b22019-05-25 19:51:39 +0200754 // For a window that has a right neighbor, draw the separator char
Bram Moolenaaraef5c622019-06-08 17:25:33 +0200755 // right of the window contents. But not on top of a popup window.
Bram Moolenaar4d784b22019-05-25 19:51:39 +0200756 if (coloff + col < Columns)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 {
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100758#ifdef FEAT_PROP_POPUP
Bram Moolenaarc662ec92019-06-23 00:15:57 +0200759 if (!blocked_by_popup(row, col + coloff))
Bram Moolenaaraef5c622019-06-08 17:25:33 +0200760#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 {
Bram Moolenaaraef5c622019-06-08 17:25:33 +0200762 int c;
763
764 c = fillchar_vsep(&hl);
765 if (ScreenLines[off_to] != (schar_T)c
766 || (enc_utf8 && (int)ScreenLinesUC[off_to]
767 != (c >= 0x80 ? c : 0))
768 || ScreenAttrs[off_to] != hl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 {
Bram Moolenaaraef5c622019-06-08 17:25:33 +0200770 ScreenLines[off_to] = c;
771 ScreenAttrs[off_to] = hl;
772 if (enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773 {
Bram Moolenaaraef5c622019-06-08 17:25:33 +0200774 if (c >= 0x80)
775 {
776 ScreenLinesUC[off_to] = c;
777 ScreenLinesC[0][off_to] = 0;
778 }
779 else
780 ScreenLinesUC[off_to] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 }
Bram Moolenaaraef5c622019-06-08 17:25:33 +0200782 screen_char(off_to, row, col + coloff);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 }
785 }
786 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787 LineWraps[row] = FALSE;
788 }
789}
790
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000791#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792/*
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000793 * Mirror text "str" for right-left displaying.
794 * Only works for single-byte characters (e.g., numbers).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795 */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000796 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100797rl_mirror(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798{
799 char_u *p1, *p2;
800 int t;
801
802 for (p1 = str, p2 = str + STRLEN(str) - 1; p1 < p2; ++p1, --p2)
803 {
804 t = *p1;
805 *p1 = *p2;
806 *p2 = t;
807 }
808}
809#endif
810
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 * Draw the verticap separator right of window "wp" starting with line "row".
813 */
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200814 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100815draw_vsep_win(win_T *wp, int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816{
817 int hl;
818 int c;
819
820 if (wp->w_vsep_width)
821 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100822 // draw the vertical separator right of this window
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 c = fillchar_vsep(&hl);
824 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + wp->w_height,
825 W_ENDCOL(wp), W_ENDCOL(wp) + 1,
826 c, ' ', hl);
827 }
828}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829
830#ifdef FEAT_WILDMENU
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100831static int skip_status_match_char(expand_T *xp, char_u *s);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832
833/*
Bram Moolenaar367329b2007-08-30 11:53:22 +0000834 * Get the length of an item as it will be shown in the status line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835 */
836 static int
Bram Moolenaar05540972016-01-30 20:31:25 +0100837status_match_len(expand_T *xp, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838{
839 int len = 0;
840
841#ifdef FEAT_MENU
842 int emenu = (xp->xp_context == EXPAND_MENUS
843 || xp->xp_context == EXPAND_MENUNAMES);
844
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100845 // Check for menu separators - replace with '|'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 if (emenu && menu_is_separator(s))
847 return 1;
848#endif
849
850 while (*s != NUL)
851 {
Bram Moolenaar7693ec62008-07-24 18:29:37 +0000852 s += skip_status_match_char(xp, s);
Bram Moolenaar81695252004-12-29 20:58:21 +0000853 len += ptr2cells(s);
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100854 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855 }
856
857 return len;
858}
859
860/*
Bram Moolenaar7693ec62008-07-24 18:29:37 +0000861 * Return the number of characters that should be skipped in a status match.
Bram Moolenaar35c54e52005-05-20 21:25:31 +0000862 * These are backslashes used for escaping. Do show backslashes in help tags.
863 */
864 static int
Bram Moolenaar05540972016-01-30 20:31:25 +0100865skip_status_match_char(expand_T *xp, char_u *s)
Bram Moolenaar35c54e52005-05-20 21:25:31 +0000866{
Bram Moolenaar7693ec62008-07-24 18:29:37 +0000867 if ((rem_backslash(s) && xp->xp_context != EXPAND_HELP)
Bram Moolenaar35c54e52005-05-20 21:25:31 +0000868#ifdef FEAT_MENU
869 || ((xp->xp_context == EXPAND_MENUS
870 || xp->xp_context == EXPAND_MENUNAMES)
871 && (s[0] == '\t' || (s[0] == '\\' && s[1] != NUL)))
872#endif
Bram Moolenaar7693ec62008-07-24 18:29:37 +0000873 )
874 {
875#ifndef BACKSLASH_IN_FILENAME
876 if (xp->xp_shell && csh_like_shell() && s[1] == '\\' && s[2] == '!')
877 return 2;
878#endif
879 return 1;
880 }
881 return 0;
Bram Moolenaar35c54e52005-05-20 21:25:31 +0000882}
883
884/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885 * Show wildchar matches in the status line.
886 * Show at least the "match" item.
887 * We start at item 'first_match' in the list and show all matches that fit.
888 *
889 * If inversion is possible we use it. Else '=' characters are used.
890 */
891 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100892win_redr_status_matches(
893 expand_T *xp,
894 int num_matches,
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100895 char_u **matches, // list of matches
Bram Moolenaar05540972016-01-30 20:31:25 +0100896 int match,
897 int showtail)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898{
899#define L_MATCH(m) (showtail ? sm_gettail(matches[m]) : matches[m])
900 int row;
901 char_u *buf;
902 int len;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100903 int clen; // length in screen cells
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 int fillchar;
905 int attr;
906 int i;
907 int highlight = TRUE;
908 char_u *selstart = NULL;
909 int selstart_col = 0;
910 char_u *selend = NULL;
911 static int first_match = 0;
912 int add_left = FALSE;
913 char_u *s;
914#ifdef FEAT_MENU
915 int emenu;
916#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100919 if (matches == NULL) // interrupted completion?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 return;
921
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000922 if (has_mbyte)
Bram Moolenaar964b3742019-05-24 18:54:09 +0200923 buf = alloc(Columns * MB_MAXBYTES + 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000924 else
Bram Moolenaar964b3742019-05-24 18:54:09 +0200925 buf = alloc(Columns + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 if (buf == NULL)
927 return;
928
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100929 if (match == -1) // don't show match but original text
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 {
931 match = 0;
932 highlight = FALSE;
933 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100934 // count 1 for the ending ">"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 clen = status_match_len(xp, L_MATCH(match)) + 3;
936 if (match == 0)
937 first_match = 0;
938 else if (match < first_match)
939 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100940 // jumping left, as far as we can go
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 first_match = match;
942 add_left = TRUE;
943 }
944 else
945 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100946 // check if match fits on the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 for (i = first_match; i < match; ++i)
948 clen += status_match_len(xp, L_MATCH(i)) + 2;
949 if (first_match > 0)
950 clen += 2;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100951 // jumping right, put match at the left
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 if ((long)clen > Columns)
953 {
954 first_match = match;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100955 // if showing the last match, we can add some on the left
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956 clen = 2;
957 for (i = match; i < num_matches; ++i)
958 {
959 clen += status_match_len(xp, L_MATCH(i)) + 2;
960 if ((long)clen >= Columns)
961 break;
962 }
963 if (i == num_matches)
964 add_left = TRUE;
965 }
966 }
967 if (add_left)
968 while (first_match > 0)
969 {
970 clen += status_match_len(xp, L_MATCH(first_match - 1)) + 2;
971 if ((long)clen >= Columns)
972 break;
973 --first_match;
974 }
975
Bram Moolenaar3633cf52017-07-31 22:29:35 +0200976 fillchar = fillchar_status(&attr, curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977
978 if (first_match == 0)
979 {
980 *buf = NUL;
981 len = 0;
982 }
983 else
984 {
985 STRCPY(buf, "< ");
986 len = 2;
987 }
988 clen = len;
989
990 i = first_match;
991 while ((long)(clen + status_match_len(xp, L_MATCH(i)) + 2) < Columns)
992 {
993 if (i == match)
994 {
995 selstart = buf + len;
996 selstart_col = clen;
997 }
998
999 s = L_MATCH(i);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001000 // Check for menu separators - replace with '|'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001#ifdef FEAT_MENU
1002 emenu = (xp->xp_context == EXPAND_MENUS
1003 || xp->xp_context == EXPAND_MENUNAMES);
1004 if (emenu && menu_is_separator(s))
1005 {
1006 STRCPY(buf + len, transchar('|'));
1007 l = (int)STRLEN(buf + len);
1008 len += l;
1009 clen += l;
1010 }
1011 else
1012#endif
1013 for ( ; *s != NUL; ++s)
1014 {
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001015 s += skip_status_match_char(xp, s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016 clen += ptr2cells(s);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001017 if (has_mbyte && (l = (*mb_ptr2len)(s)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 {
1019 STRNCPY(buf + len, s, l);
1020 s += l - 1;
1021 len += l;
1022 }
1023 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024 {
1025 STRCPY(buf + len, transchar_byte(*s));
1026 len += (int)STRLEN(buf + len);
1027 }
1028 }
1029 if (i == match)
1030 selend = buf + len;
1031
1032 *(buf + len++) = ' ';
1033 *(buf + len++) = ' ';
1034 clen += 2;
1035 if (++i == num_matches)
1036 break;
1037 }
1038
1039 if (i != num_matches)
1040 {
1041 *(buf + len++) = '>';
1042 ++clen;
1043 }
1044
1045 buf[len] = NUL;
1046
1047 row = cmdline_row - 1;
1048 if (row >= 0)
1049 {
1050 if (wild_menu_showing == 0)
1051 {
1052 if (msg_scrolled > 0)
1053 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001054 // Put the wildmenu just above the command line. If there is
1055 // no room, scroll the screen one line up.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 if (cmdline_row == Rows - 1)
1057 {
Bram Moolenaarcfce7172017-08-17 20:31:48 +02001058 screen_del_lines(0, 0, 1, (int)Rows, TRUE, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059 ++msg_scrolled;
1060 }
1061 else
1062 {
1063 ++cmdline_row;
1064 ++row;
1065 }
1066 wild_menu_showing = WM_SCROLLED;
1067 }
1068 else
1069 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001070 // Create status line if needed by setting 'laststatus' to 2.
1071 // Set 'winminheight' to zero to avoid that the window is
1072 // resized.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 if (lastwin->w_status_height == 0)
1074 {
1075 save_p_ls = p_ls;
1076 save_p_wmh = p_wmh;
1077 p_ls = 2;
1078 p_wmh = 0;
1079 last_status(FALSE);
1080 }
1081 wild_menu_showing = WM_SHOWN;
1082 }
1083 }
1084
1085 screen_puts(buf, row, 0, attr);
1086 if (selstart != NULL && highlight)
1087 {
1088 *selend = NUL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001089 screen_puts(selstart, row, selstart_col, HL_ATTR(HLF_WM));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090 }
1091
1092 screen_fill(row, row + 1, clen, (int)Columns, fillchar, fillchar, attr);
1093 }
1094
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095 win_redraw_last_status(topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096 vim_free(buf);
1097}
1098#endif
1099
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101 * Return TRUE if the status line of window "wp" is connected to the status
1102 * line of the window right of it. If not, then it's a vertical separator.
1103 * Only call if (wp->w_vsep_width != 0).
1104 */
1105 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001106stl_connected(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107{
1108 frame_T *fr;
1109
1110 fr = wp->w_frame;
1111 while (fr->fr_parent != NULL)
1112 {
1113 if (fr->fr_parent->fr_layout == FR_COL)
1114 {
1115 if (fr->fr_next != NULL)
1116 break;
1117 }
1118 else
1119 {
1120 if (fr->fr_next != NULL)
1121 return TRUE;
1122 }
1123 fr = fr->fr_parent;
1124 }
1125 return FALSE;
1126}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129/*
1130 * Get the value to show for the language mappings, active 'keymap'.
1131 */
1132 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001133get_keymap_str(
1134 win_T *wp,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001135 char_u *fmt, // format string containing one %s item
1136 char_u *buf, // buffer for the result
1137 int len) // length of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138{
1139 char_u *p;
1140
1141 if (wp->w_buffer->b_p_iminsert != B_IMODE_LMAP)
1142 return FALSE;
1143
1144 {
1145#ifdef FEAT_EVAL
1146 buf_T *old_curbuf = curbuf;
1147 win_T *old_curwin = curwin;
1148 char_u *s;
1149
1150 curbuf = wp->w_buffer;
1151 curwin = wp;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001152 STRCPY(buf, "b:keymap_name"); // must be writable
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 ++emsg_skip;
Bram Moolenaarb171fb12020-06-24 20:34:03 +02001154 s = p = eval_to_string(buf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 --emsg_skip;
1156 curbuf = old_curbuf;
1157 curwin = old_curwin;
1158 if (p == NULL || *p == NUL)
1159#endif
1160 {
1161#ifdef FEAT_KEYMAP
1162 if (wp->w_buffer->b_kmap_state & KEYMAP_LOADED)
1163 p = wp->w_buffer->b_p_keymap;
1164 else
1165#endif
1166 p = (char_u *)"lang";
1167 }
Bram Moolenaar73ac0c42016-07-24 16:17:59 +02001168 if (vim_snprintf((char *)buf, len, (char *)fmt, p) > len - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169 buf[0] = NUL;
1170#ifdef FEAT_EVAL
1171 vim_free(s);
1172#endif
1173 }
1174 return buf[0] != NUL;
1175}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176
1177#if defined(FEAT_STL_OPT) || defined(PROTO)
1178/*
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00001179 * Redraw the status line or ruler of window "wp".
1180 * When "wp" is NULL redraw the tab pages line from 'tabline'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 */
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001182 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001183win_redr_custom(
1184 win_T *wp,
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001185 int draw_ruler) // TRUE or FALSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186{
Bram Moolenaar1d633412013-12-11 15:52:01 +01001187 static int entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 int attr;
1189 int curattr;
1190 int row;
1191 int col = 0;
1192 int maxwidth;
1193 int width;
1194 int n;
1195 int len;
1196 int fillchar;
1197 char_u buf[MAXPATHL];
Bram Moolenaar362f3562009-11-03 16:20:34 +00001198 char_u *stl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 char_u *p;
Bram Moolenaar8133cc62020-10-26 21:05:27 +01001200 stl_hlrec_T *hltab;
1201 stl_hlrec_T *tabtab;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00001202 int use_sandbox = FALSE;
Bram Moolenaar61452852011-02-01 18:01:11 +01001203 win_T *ewp;
1204 int p_crb_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001206 // There is a tiny chance that this gets called recursively: When
1207 // redrawing a status line triggers redrawing the ruler or tabline.
1208 // Avoid trouble by not allowing recursion.
Bram Moolenaar1d633412013-12-11 15:52:01 +01001209 if (entered)
1210 return;
1211 entered = TRUE;
1212
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001213 // setup environment for the task at hand
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00001214 if (wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 {
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001216 // Use 'tabline'. Always at the first line of the screen.
Bram Moolenaar362f3562009-11-03 16:20:34 +00001217 stl = p_tal;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00001218 row = 0;
Bram Moolenaar65c923a2006-03-03 22:56:30 +00001219 fillchar = ' ';
Bram Moolenaar8820b482017-03-16 17:23:31 +01001220 attr = HL_ATTR(HLF_TPF);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00001221 maxwidth = Columns;
1222# ifdef FEAT_EVAL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001223 use_sandbox = was_set_insecurely((char_u *)"tabline", 0);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00001224# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00001226 else
1227 {
1228 row = W_WINROW(wp) + wp->w_height;
Bram Moolenaar3633cf52017-07-31 22:29:35 +02001229 fillchar = fillchar_status(&attr, wp);
Bram Moolenaar02631462017-09-22 15:20:32 +02001230 maxwidth = wp->w_width;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00001231
1232 if (draw_ruler)
1233 {
Bram Moolenaar362f3562009-11-03 16:20:34 +00001234 stl = p_ruf;
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001235 // advance past any leading group spec - implicit in ru_col
Bram Moolenaar362f3562009-11-03 16:20:34 +00001236 if (*stl == '%')
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00001237 {
Bram Moolenaar362f3562009-11-03 16:20:34 +00001238 if (*++stl == '-')
1239 stl++;
1240 if (atoi((char *)stl))
1241 while (VIM_ISDIGIT(*stl))
1242 stl++;
1243 if (*stl++ != '(')
1244 stl = p_ruf;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00001245 }
Bram Moolenaar02631462017-09-22 15:20:32 +02001246 col = ru_col - (Columns - wp->w_width);
1247 if (col < (wp->w_width + 1) / 2)
1248 col = (wp->w_width + 1) / 2;
1249 maxwidth = wp->w_width - col;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00001250 if (!wp->w_status_height)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00001251 {
1252 row = Rows - 1;
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001253 --maxwidth; // writing in last column may cause scrolling
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00001254 fillchar = ' ';
1255 attr = 0;
1256 }
1257
1258# ifdef FEAT_EVAL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001259 use_sandbox = was_set_insecurely((char_u *)"rulerformat", 0);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00001260# endif
1261 }
1262 else
1263 {
1264 if (*wp->w_p_stl != NUL)
Bram Moolenaar362f3562009-11-03 16:20:34 +00001265 stl = wp->w_p_stl;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00001266 else
Bram Moolenaar362f3562009-11-03 16:20:34 +00001267 stl = p_stl;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00001268# ifdef FEAT_EVAL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001269 use_sandbox = was_set_insecurely((char_u *)"statusline",
1270 *wp->w_p_stl == NUL ? 0 : OPT_LOCAL);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00001271# endif
1272 }
1273
Bram Moolenaar53f81742017-09-22 14:35:51 +02001274 col += wp->w_wincol;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00001275 }
1276
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 if (maxwidth <= 0)
Bram Moolenaar1d633412013-12-11 15:52:01 +01001278 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001280 // Temporarily reset 'cursorbind', we don't want a side effect from moving
1281 // the cursor away and back.
Bram Moolenaar61452852011-02-01 18:01:11 +01001282 ewp = wp == NULL ? curwin : wp;
1283 p_crb_save = ewp->w_p_crb;
1284 ewp->w_p_crb = FALSE;
1285
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001286 // Make a copy, because the statusline may include a function call that
1287 // might change the option value and free the memory.
Bram Moolenaar362f3562009-11-03 16:20:34 +00001288 stl = vim_strsave(stl);
Bram Moolenaar61452852011-02-01 18:01:11 +01001289 width = build_stl_str_hl(ewp, buf, sizeof(buf),
Bram Moolenaar362f3562009-11-03 16:20:34 +00001290 stl, use_sandbox,
Bram Moolenaar8133cc62020-10-26 21:05:27 +01001291 fillchar, maxwidth, &hltab, &tabtab);
Bram Moolenaar362f3562009-11-03 16:20:34 +00001292 vim_free(stl);
Bram Moolenaar61452852011-02-01 18:01:11 +01001293 ewp->w_p_crb = p_crb_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001295 // Make all characters printable.
Bram Moolenaar7c5676b2010-12-08 19:56:58 +01001296 p = transstr(buf);
1297 if (p != NULL)
1298 {
1299 vim_strncpy(buf, p, sizeof(buf) - 1);
1300 vim_free(p);
1301 }
1302
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001303 // fill up with "fillchar"
Bram Moolenaar7c5676b2010-12-08 19:56:58 +01001304 len = (int)STRLEN(buf);
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00001305 while (width < maxwidth && len < (int)sizeof(buf) - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 len += (*mb_char2bytes)(fillchar, buf + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 ++width;
1309 }
1310 buf[len] = NUL;
1311
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001312 /*
1313 * Draw each snippet with the specified highlighting.
1314 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 curattr = attr;
1316 p = buf;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001317 for (n = 0; hltab[n].start != NULL; n++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001319 len = (int)(hltab[n].start - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 screen_puts_len(p, len, row, col, curattr);
1321 col += vim_strnsize(p, len);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001322 p = hltab[n].start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001324 if (hltab[n].userhl == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 curattr = attr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001326 else if (hltab[n].userhl < 0)
1327 curattr = syn_id2attr(-hltab[n].userhl);
Bram Moolenaar4033c552017-09-16 20:54:51 +02001328#ifdef FEAT_TERMINAL
Bram Moolenaar05fbfdc2017-08-14 22:35:08 +02001329 else if (wp != NULL && wp != curwin && bt_terminal(wp->w_buffer)
1330 && wp->w_status_height != 0)
1331 curattr = highlight_stltermnc[hltab[n].userhl - 1];
Bram Moolenaarbce4f622017-08-13 21:37:43 +02001332 else if (wp != NULL && bt_terminal(wp->w_buffer)
1333 && wp->w_status_height != 0)
1334 curattr = highlight_stlterm[hltab[n].userhl - 1];
Bram Moolenaar4033c552017-09-16 20:54:51 +02001335#endif
Bram Moolenaar238a5642006-02-21 22:12:05 +00001336 else if (wp != NULL && wp != curwin && wp->w_status_height != 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001337 curattr = highlight_stlnc[hltab[n].userhl - 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 else
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001339 curattr = highlight_user[hltab[n].userhl - 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 }
1341 screen_puts(p, row, col, curattr);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001342
1343 if (wp == NULL)
1344 {
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001345 // Fill the TabPageIdxs[] array for clicking in the tab pagesline.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001346 col = 0;
1347 len = 0;
1348 p = buf;
1349 fillchar = 0;
1350 for (n = 0; tabtab[n].start != NULL; n++)
1351 {
1352 len += vim_strnsize(p, (int)(tabtab[n].start - p));
1353 while (col < len)
1354 TabPageIdxs[col++] = fillchar;
1355 p = tabtab[n].start;
1356 fillchar = tabtab[n].userhl;
1357 }
1358 while (col < Columns)
1359 TabPageIdxs[col++] = fillchar;
1360 }
Bram Moolenaar1d633412013-12-11 15:52:01 +01001361
1362theend:
1363 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364}
1365
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001366#endif // FEAT_STL_OPT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367
1368/*
1369 * Output a single character directly to the screen and update ScreenLines.
1370 */
1371 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001372screen_putchar(int c, int row, int col, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 char_u buf[MB_MAXBYTES + 1];
1375
Bram Moolenaar9a920d82012-06-01 15:21:02 +02001376 if (has_mbyte)
1377 buf[(*mb_char2bytes)(c, buf)] = NUL;
1378 else
Bram Moolenaar9a920d82012-06-01 15:21:02 +02001379 {
1380 buf[0] = c;
1381 buf[1] = NUL;
1382 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 screen_puts(buf, row, col, attr);
1384}
1385
1386/*
1387 * Get a single character directly from ScreenLines into "bytes[]".
1388 * Also return its attribute in *attrp;
1389 */
1390 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001391screen_getbytes(int row, int col, char_u *bytes, int *attrp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392{
1393 unsigned off;
1394
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001395 // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 if (ScreenLines != NULL && row < screen_Rows && col < screen_Columns)
1397 {
1398 off = LineOffset[row] + col;
1399 *attrp = ScreenAttrs[off];
1400 bytes[0] = ScreenLines[off];
1401 bytes[1] = NUL;
1402
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 if (enc_utf8 && ScreenLinesUC[off] != 0)
1404 bytes[utfc_char2bytes(off, bytes)] = NUL;
1405 else if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
1406 {
1407 bytes[0] = ScreenLines[off];
1408 bytes[1] = ScreenLines2[off];
1409 bytes[2] = NUL;
1410 }
1411 else if (enc_dbcs && MB_BYTE2LEN(bytes[0]) > 1)
1412 {
1413 bytes[1] = ScreenLines[off + 1];
1414 bytes[2] = NUL;
1415 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416 }
1417}
1418
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001419/*
1420 * Return TRUE if composing characters for screen posn "off" differs from
1421 * composing characters in "u8cc".
Bram Moolenaar70c49c12010-03-23 15:36:35 +01001422 * Only to be used when ScreenLinesUC[off] != 0.
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001423 */
1424 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001425screen_comp_differs(int off, int *u8cc)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001426{
1427 int i;
1428
1429 for (i = 0; i < Screen_mco; ++i)
1430 {
1431 if (ScreenLinesC[i][off] != (u8char_T)u8cc[i])
1432 return TRUE;
1433 if (u8cc[i] == 0)
1434 break;
1435 }
1436 return FALSE;
1437}
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001438
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439/*
1440 * Put string '*text' on the screen at position 'row' and 'col', with
1441 * attributes 'attr', and update ScreenLines[] and ScreenAttrs[].
1442 * Note: only outputs within one row, message is truncated at screen boundary!
1443 * Note: if ScreenLines[], row and/or col is invalid, nothing is done.
1444 */
1445 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001446screen_puts(
1447 char_u *text,
1448 int row,
1449 int col,
1450 int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451{
1452 screen_puts_len(text, -1, row, col, attr);
1453}
1454
1455/*
1456 * Like screen_puts(), but output "text[len]". When "len" is -1 output up to
1457 * a NUL.
1458 */
1459 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001460screen_puts_len(
1461 char_u *text,
1462 int textlen,
1463 int row,
1464 int col,
1465 int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466{
1467 unsigned off;
1468 char_u *ptr = text;
Bram Moolenaare4c21e62014-05-22 16:05:19 +02001469 int len = textlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001470 int c;
Bram Moolenaar367329b2007-08-30 11:53:22 +00001471 unsigned max_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 int mbyte_blen = 1;
1473 int mbyte_cells = 1;
1474 int u8c = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001475 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 int clear_next_cell = FALSE;
Bram Moolenaara12a1612019-01-24 16:39:02 +01001477#ifdef FEAT_ARABIC
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001478 int prev_c = 0; // previous Arabic character
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001479 int pc, nc, nc1;
1480 int pcc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481#endif
Bram Moolenaar2bea2912009-03-11 16:58:40 +00001482 int force_redraw_this;
1483 int force_redraw_next = FALSE;
Bram Moolenaar2bea2912009-03-11 16:58:40 +00001484 int need_redraw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485
Bram Moolenaar0b4c9ed2019-06-03 22:04:23 +02001486 // Safety check. The check for negative row and column is to fix issue
1487 // #4102. TODO: find out why row/col could be negative.
1488 if (ScreenLines == NULL
1489 || row >= screen_Rows || row < 0
1490 || col >= screen_Columns || col < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 return;
Bram Moolenaar2bea2912009-03-11 16:58:40 +00001492 off = LineOffset[row] + col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001494 // When drawing over the right halve of a double-wide char clear out the
1495 // left halve. Only needed in a terminal.
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001496 if (has_mbyte && col > 0 && col < screen_Columns
Bram Moolenaara12a1612019-01-24 16:39:02 +01001497#ifdef FEAT_GUI
Bram Moolenaarc236c162008-07-13 17:41:49 +00001498 && !gui.in_use
Bram Moolenaara12a1612019-01-24 16:39:02 +01001499#endif
Bram Moolenaarc236c162008-07-13 17:41:49 +00001500 && mb_fix_col(col, row) != col)
Bram Moolenaar2bea2912009-03-11 16:58:40 +00001501 {
1502 ScreenLines[off - 1] = ' ';
1503 ScreenAttrs[off - 1] = 0;
1504 if (enc_utf8)
1505 {
1506 ScreenLinesUC[off - 1] = 0;
1507 ScreenLinesC[0][off - 1] = 0;
1508 }
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001509 // redraw the previous cell, make it empty
Bram Moolenaar2bea2912009-03-11 16:58:40 +00001510 screen_char(off - 1, row, col - 1);
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001511 // force the cell at "col" to be redrawn
Bram Moolenaar2bea2912009-03-11 16:58:40 +00001512 force_redraw_next = TRUE;
1513 }
Bram Moolenaarc236c162008-07-13 17:41:49 +00001514
Bram Moolenaar367329b2007-08-30 11:53:22 +00001515 max_off = LineOffset[row] + screen_Columns;
Bram Moolenaara064ac82007-08-05 18:10:54 +00001516 while (col < screen_Columns
1517 && (len < 0 || (int)(ptr - text) < len)
1518 && *ptr != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 {
1520 c = *ptr;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001521 // check if this is the first byte of a multibyte
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 if (has_mbyte)
1523 {
1524 if (enc_utf8 && len > 0)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001525 mbyte_blen = utfc_ptr2len_len(ptr, (int)((text + len) - ptr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001527 mbyte_blen = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528 if (enc_dbcs == DBCS_JPNU && c == 0x8e)
1529 mbyte_cells = 1;
1530 else if (enc_dbcs != 0)
1531 mbyte_cells = mbyte_blen;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001532 else // enc_utf8
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 {
1534 if (len >= 0)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001535 u8c = utfc_ptr2char_len(ptr, u8cc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 (int)((text + len) - ptr));
1537 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001538 u8c = utfc_ptr2char(ptr, u8cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539 mbyte_cells = utf_char2cells(u8c);
Bram Moolenaara12a1612019-01-24 16:39:02 +01001540#ifdef FEAT_ARABIC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 if (p_arshape && !p_tbidi && ARABIC_CHAR(u8c))
1542 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001543 // Do Arabic shaping.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 if (len >= 0 && (int)(ptr - text) + mbyte_blen >= len)
1545 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001546 // Past end of string to be displayed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 nc = NUL;
1548 nc1 = NUL;
1549 }
1550 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001551 {
Bram Moolenaar54620182009-11-11 16:07:20 +00001552 nc = utfc_ptr2char_len(ptr + mbyte_blen, pcc,
1553 (int)((text + len) - ptr - mbyte_blen));
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001554 nc1 = pcc[0];
1555 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 pc = prev_c;
1557 prev_c = u8c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001558 u8c = arabic_shape(u8c, &c, &u8cc[0], nc, nc1, pc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 }
1560 else
1561 prev_c = u8c;
Bram Moolenaara12a1612019-01-24 16:39:02 +01001562#endif
Bram Moolenaare4ebd292010-01-19 17:40:46 +01001563 if (col + mbyte_cells > screen_Columns)
1564 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001565 // Only 1 cell left, but character requires 2 cells:
1566 // display a '>' in the last column to avoid wrapping.
Bram Moolenaare4ebd292010-01-19 17:40:46 +01001567 c = '>';
1568 mbyte_cells = 1;
1569 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 }
1571 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572
Bram Moolenaar2bea2912009-03-11 16:58:40 +00001573 force_redraw_this = force_redraw_next;
1574 force_redraw_next = FALSE;
Bram Moolenaar2bea2912009-03-11 16:58:40 +00001575
1576 need_redraw = ScreenLines[off] != c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 || (mbyte_cells == 2
1578 && ScreenLines[off + 1] != (enc_dbcs ? ptr[1] : 0))
1579 || (enc_dbcs == DBCS_JPNU
1580 && c == 0x8e
1581 && ScreenLines2[off] != ptr[1])
1582 || (enc_utf8
Bram Moolenaar70c49c12010-03-23 15:36:35 +01001583 && (ScreenLinesUC[off] !=
1584 (u8char_T)(c < 0x80 && u8cc[0] == 0 ? 0 : u8c)
1585 || (ScreenLinesUC[off] != 0
1586 && screen_comp_differs(off, u8cc))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587 || ScreenAttrs[off] != attr
Bram Moolenaar2bea2912009-03-11 16:58:40 +00001588 || exmode_active;
1589
Bram Moolenaar24a5ac52019-06-08 19:01:18 +02001590 if ((need_redraw || force_redraw_this)
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001591#ifdef FEAT_PROP_POPUP
Bram Moolenaarc662ec92019-06-23 00:15:57 +02001592 && !blocked_by_popup(row, col)
Bram Moolenaar24a5ac52019-06-08 19:01:18 +02001593#endif
1594 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595 {
1596#if defined(FEAT_GUI) || defined(UNIX)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001597 // The bold trick makes a single row of pixels appear in the next
1598 // character. When a bold character is removed, the next
1599 // character should be redrawn too. This happens for our own GUI
1600 // and for some xterms.
Bram Moolenaar2bea2912009-03-11 16:58:40 +00001601 if (need_redraw && ScreenLines[off] != ' ' && (
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602# ifdef FEAT_GUI
1603 gui.in_use
1604# endif
1605# if defined(FEAT_GUI) && defined(UNIX)
1606 ||
1607# endif
1608# ifdef UNIX
1609 term_is_xterm
1610# endif
Bram Moolenaar2bea2912009-03-11 16:58:40 +00001611 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 {
Bram Moolenaar2bea2912009-03-11 16:58:40 +00001613 int n = ScreenAttrs[off];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614
Bram Moolenaar2bea2912009-03-11 16:58:40 +00001615 if (n > HL_ALL)
1616 n = syn_attr2attr(n);
1617 if (n & HL_BOLD)
1618 force_redraw_next = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 }
1620#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001621 // When at the end of the text and overwriting a two-cell
1622 // character with a one-cell character, need to clear the next
1623 // cell. Also when overwriting the left halve of a two-cell char
1624 // with the right halve of a two-cell char. Do this only once
1625 // (mb_off2cells() may return 2 on the right halve).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626 if (clear_next_cell)
1627 clear_next_cell = FALSE;
1628 else if (has_mbyte
1629 && (len < 0 ? ptr[mbyte_blen] == NUL
1630 : ptr + mbyte_blen >= text + len)
Bram Moolenaar367329b2007-08-30 11:53:22 +00001631 && ((mbyte_cells == 1 && (*mb_off2cells)(off, max_off) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 || (mbyte_cells == 2
Bram Moolenaar367329b2007-08-30 11:53:22 +00001633 && (*mb_off2cells)(off, max_off) == 1
1634 && (*mb_off2cells)(off + 1, max_off) > 1)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635 clear_next_cell = TRUE;
1636
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001637 // Make sure we never leave a second byte of a double-byte behind,
1638 // it confuses mb_off2cells().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639 if (enc_dbcs
Bram Moolenaar367329b2007-08-30 11:53:22 +00001640 && ((mbyte_cells == 1 && (*mb_off2cells)(off, max_off) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 || (mbyte_cells == 2
Bram Moolenaar367329b2007-08-30 11:53:22 +00001642 && (*mb_off2cells)(off, max_off) == 1
1643 && (*mb_off2cells)(off + 1, max_off) > 1)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 ScreenLines[off + mbyte_blen] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645 ScreenLines[off] = c;
1646 ScreenAttrs[off] = attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 if (enc_utf8)
1648 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001649 if (c < 0x80 && u8cc[0] == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 ScreenLinesUC[off] = 0;
1651 else
1652 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001653 int i;
1654
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 ScreenLinesUC[off] = u8c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001656 for (i = 0; i < Screen_mco; ++i)
1657 {
1658 ScreenLinesC[i][off] = u8cc[i];
1659 if (u8cc[i] == 0)
1660 break;
1661 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 }
1663 if (mbyte_cells == 2)
1664 {
1665 ScreenLines[off + 1] = 0;
1666 ScreenAttrs[off + 1] = attr;
1667 }
1668 screen_char(off, row, col);
1669 }
1670 else if (mbyte_cells == 2)
1671 {
1672 ScreenLines[off + 1] = ptr[1];
1673 ScreenAttrs[off + 1] = attr;
1674 screen_char_2(off, row, col);
1675 }
1676 else if (enc_dbcs == DBCS_JPNU && c == 0x8e)
1677 {
1678 ScreenLines2[off] = ptr[1];
1679 screen_char(off, row, col);
1680 }
1681 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682 screen_char(off, row, col);
1683 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 if (has_mbyte)
1685 {
1686 off += mbyte_cells;
1687 col += mbyte_cells;
1688 ptr += mbyte_blen;
1689 if (clear_next_cell)
Bram Moolenaare4c21e62014-05-22 16:05:19 +02001690 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001691 // This only happens at the end, display one space next.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692 ptr = (char_u *)" ";
Bram Moolenaare4c21e62014-05-22 16:05:19 +02001693 len = -1;
1694 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695 }
1696 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 {
1698 ++off;
1699 ++col;
1700 ++ptr;
1701 }
1702 }
Bram Moolenaar2bea2912009-03-11 16:58:40 +00001703
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001704 // If we detected the next character needs to be redrawn, but the text
1705 // doesn't extend up to there, update the character here.
Bram Moolenaar2bea2912009-03-11 16:58:40 +00001706 if (force_redraw_next && col < screen_Columns)
1707 {
Bram Moolenaar2bea2912009-03-11 16:58:40 +00001708 if (enc_dbcs != 0 && dbcs_off2cells(off, max_off) > 1)
1709 screen_char_2(off, row, col);
1710 else
Bram Moolenaar2bea2912009-03-11 16:58:40 +00001711 screen_char(off, row, col);
1712 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713}
1714
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001715#if defined(FEAT_SEARCH_EXTRA) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001717 * Prepare for 'hlsearch' highlighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 */
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001719 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001720start_search_hl(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721{
1722 if (p_hls && !no_hlsearch)
1723 {
Bram Moolenaar0b6849e2020-05-02 18:33:25 +02001724 end_search_hl(); // just in case it wasn't called before
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001725 last_pat_prog(&screen_search_hl.rm);
1726 screen_search_hl.attr = HL_ATTR(HLF_L);
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001727# ifdef FEAT_RELTIME
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001728 // Set the time limit to 'redrawtime'.
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001729 profile_setlimit(p_rdt, &screen_search_hl.tm);
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001730# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 }
1732}
1733
1734/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001735 * Clean up for 'hlsearch' highlighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 */
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001737 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001738end_search_hl(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739{
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001740 if (screen_search_hl.rm.regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 {
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001742 vim_regfree(screen_search_hl.rm.regprog);
1743 screen_search_hl.rm.regprog = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 }
1745}
Bram Moolenaarde993ea2014-06-17 23:18:01 +02001746#endif
Bram Moolenaarb3414592014-06-17 17:48:32 +02001747
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001749screen_start_highlight(int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750{
1751 attrentry_T *aep = NULL;
1752
1753 screen_attr = attr;
1754 if (full_screen
Bram Moolenaar4f974752019-02-17 17:44:42 +01001755#ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 && termcap_active
1757#endif
1758 )
1759 {
1760#ifdef FEAT_GUI
1761 if (gui.in_use)
1762 {
1763 char buf[20];
1764
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001765 // The GUI handles this internally.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001766 sprintf(buf, IF_EB("\033|%dh", ESC_STR "|%dh"), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767 OUT_STR(buf);
1768 }
1769 else
1770#endif
1771 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001772 if (attr > HL_ALL) // special HL attr.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 {
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001774 if (IS_CTERM)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 aep = syn_cterm_attr2entry(attr);
1776 else
1777 aep = syn_term_attr2entry(attr);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001778 if (aep == NULL) // did ":syntax clear"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 attr = 0;
1780 else
1781 attr = aep->ae_attr;
1782 }
Bram Moolenaara050b942019-12-02 21:35:31 +01001783#if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
1784 if (use_vtp())
1785 {
1786 guicolor_T defguifg, defguibg;
1787 int defctermfg, defctermbg;
1788
1789 // If FG and BG are unset, the color is undefined when
1790 // BOLD+INVERSE. Use Normal as the default value.
1791 get_default_console_color(&defctermfg, &defctermbg, &defguifg,
1792 &defguibg);
1793
1794 if (p_tgc)
1795 {
1796 if (aep == NULL || COLOR_INVALID(aep->ae_u.cterm.fg_rgb))
1797 term_fg_rgb_color(defguifg);
1798 if (aep == NULL || COLOR_INVALID(aep->ae_u.cterm.bg_rgb))
1799 term_bg_rgb_color(defguibg);
1800 }
1801 else if (t_colors >= 256)
1802 {
1803 if (aep == NULL || aep->ae_u.cterm.fg_color == 0)
1804 term_fg_color(defctermfg);
1805 if (aep == NULL || aep->ae_u.cterm.bg_color == 0)
1806 term_bg_color(defctermbg);
1807 }
1808 }
1809#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001810 if ((attr & HL_BOLD) && *T_MD != NUL) // bold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 out_str(T_MD);
Bram Moolenaard4fc5772018-02-27 14:39:03 +01001812 else if (aep != NULL && cterm_normal_fg_bold && (
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001813#ifdef FEAT_TERMGUICOLORS
Bram Moolenaard4fc5772018-02-27 14:39:03 +01001814 p_tgc && aep->ae_u.cterm.fg_rgb != CTERMCOLOR
1815 ? aep->ae_u.cterm.fg_rgb != INVALCOLOR
1816 :
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001817#endif
Bram Moolenaard4fc5772018-02-27 14:39:03 +01001818 t_colors > 1 && aep->ae_u.cterm.fg_color))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001819 // If the Normal FG color has BOLD attribute and the new HL
1820 // has a FG color defined, clear BOLD.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001821 out_str(T_ME);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001822 if ((attr & HL_STANDOUT) && *T_SO != NUL) // standout
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 out_str(T_SO);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001824 if ((attr & HL_UNDERCURL) && *T_UCS != NUL) // undercurl
Bram Moolenaar8b9e20a2017-11-28 21:25:21 +01001825 out_str(T_UCS);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001826 if (((attr & HL_UNDERLINE) // underline or undercurl
Bram Moolenaar45a00002017-12-22 21:12:34 +01001827 || ((attr & HL_UNDERCURL) && *T_UCS == NUL))
1828 && *T_US != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829 out_str(T_US);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001830 if ((attr & HL_ITALIC) && *T_CZH != NUL) // italic
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 out_str(T_CZH);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001832 if ((attr & HL_INVERSE) && *T_MR != NUL) // inverse (reverse)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 out_str(T_MR);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001834 if ((attr & HL_STRIKETHROUGH) && *T_STS != NUL) // strike
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02001835 out_str(T_STS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836
1837 /*
1838 * Output the color or start string after bold etc., in case the
1839 * bold etc. override the color setting.
1840 */
1841 if (aep != NULL)
1842 {
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001843#ifdef FEAT_TERMGUICOLORS
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001844 // When 'termguicolors' is set but fg or bg is unset,
1845 // fall back to the cterm colors. This helps for SpellBad,
1846 // where the GUI uses a red undercurl.
Bram Moolenaard4fc5772018-02-27 14:39:03 +01001847 if (p_tgc && aep->ae_u.cterm.fg_rgb != CTERMCOLOR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 {
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02001849 if (aep->ae_u.cterm.fg_rgb != INVALCOLOR)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001850 term_fg_rgb_color(aep->ae_u.cterm.fg_rgb);
Bram Moolenaard4fc5772018-02-27 14:39:03 +01001851 }
1852 else
1853#endif
1854 if (t_colors > 1)
1855 {
1856 if (aep->ae_u.cterm.fg_color)
1857 term_fg_color(aep->ae_u.cterm.fg_color - 1);
1858 }
1859#ifdef FEAT_TERMGUICOLORS
1860 if (p_tgc && aep->ae_u.cterm.bg_rgb != CTERMCOLOR)
1861 {
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02001862 if (aep->ae_u.cterm.bg_rgb != INVALCOLOR)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001863 term_bg_rgb_color(aep->ae_u.cterm.bg_rgb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 }
1865 else
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001866#endif
Bram Moolenaard4fc5772018-02-27 14:39:03 +01001867 if (t_colors > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 {
Bram Moolenaard4fc5772018-02-27 14:39:03 +01001869 if (aep->ae_u.cterm.bg_color)
1870 term_bg_color(aep->ae_u.cterm.bg_color - 1);
1871 }
Bram Moolenaare023e882020-05-31 16:42:30 +02001872#ifdef FEAT_TERMGUICOLORS
1873 if (p_tgc && aep->ae_u.cterm.ul_rgb != CTERMCOLOR)
1874 {
1875 if (aep->ae_u.cterm.ul_rgb != INVALCOLOR)
1876 term_ul_rgb_color(aep->ae_u.cterm.ul_rgb);
1877 }
1878 else
1879#endif
1880 if (t_colors > 1)
1881 {
1882 if (aep->ae_u.cterm.ul_color)
1883 term_ul_color(aep->ae_u.cterm.ul_color - 1);
1884 }
Bram Moolenaard4fc5772018-02-27 14:39:03 +01001885
Bram Moolenaarf708ac52018-03-12 21:48:32 +01001886 if (!IS_CTERM)
Bram Moolenaard4fc5772018-02-27 14:39:03 +01001887 {
1888 if (aep->ae_u.term.start != NULL)
1889 out_str(aep->ae_u.term.start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 }
1891 }
1892 }
1893 }
1894}
1895
1896 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001897screen_stop_highlight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001899 int do_ME = FALSE; // output T_ME code
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02001900#if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
Bram Moolenaar09307e32020-05-29 21:42:55 +02001901 int do_ME_fg = FALSE, do_ME_bg = FALSE;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02001902#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903
1904 if (screen_attr != 0
Bram Moolenaar4f974752019-02-17 17:44:42 +01001905#ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 && termcap_active
1907#endif
1908 )
1909 {
1910#ifdef FEAT_GUI
1911 if (gui.in_use)
1912 {
1913 char buf[20];
1914
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001915 // use internal GUI code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 sprintf(buf, IF_EB("\033|%dH", ESC_STR "|%dH"), screen_attr);
1917 OUT_STR(buf);
1918 }
1919 else
1920#endif
1921 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001922 if (screen_attr > HL_ALL) // special HL attr.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 {
1924 attrentry_T *aep;
1925
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001926 if (IS_CTERM)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 {
1928 /*
1929 * Assume that t_me restores the original colors!
1930 */
1931 aep = syn_cterm_attr2entry(screen_attr);
Bram Moolenaard4fc5772018-02-27 14:39:03 +01001932 if (aep != NULL && ((
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001933#ifdef FEAT_TERMGUICOLORS
Bram Moolenaard4fc5772018-02-27 14:39:03 +01001934 p_tgc && aep->ae_u.cterm.fg_rgb != CTERMCOLOR
1935 ? aep->ae_u.cterm.fg_rgb != INVALCOLOR
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02001936# ifdef FEAT_VTP
1937 ? !(do_ME_fg = TRUE) : (do_ME_fg = FALSE)
1938# endif
Bram Moolenaard4fc5772018-02-27 14:39:03 +01001939 :
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001940#endif
Bram Moolenaard4fc5772018-02-27 14:39:03 +01001941 aep->ae_u.cterm.fg_color) || (
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001942#ifdef FEAT_TERMGUICOLORS
Bram Moolenaard4fc5772018-02-27 14:39:03 +01001943 p_tgc && aep->ae_u.cterm.bg_rgb != CTERMCOLOR
1944 ? aep->ae_u.cterm.bg_rgb != INVALCOLOR
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02001945# ifdef FEAT_VTP
1946 ? !(do_ME_bg = TRUE) : (do_ME_bg = FALSE)
1947# endif
Bram Moolenaard4fc5772018-02-27 14:39:03 +01001948 :
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001949#endif
Bram Moolenaard4fc5772018-02-27 14:39:03 +01001950 aep->ae_u.cterm.bg_color)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 do_ME = TRUE;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02001952#if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
1953 if (use_vtp())
1954 {
1955 if (do_ME_fg && do_ME_bg)
1956 do_ME = TRUE;
1957
1958 // FG and BG cannot be separated in T_ME, which is not
1959 // efficient.
1960 if (!do_ME && do_ME_fg)
1961 out_str((char_u *)"\033|39m"); // restore FG
1962 if (!do_ME && do_ME_bg)
1963 out_str((char_u *)"\033|49m"); // restore BG
1964 }
1965 else
1966 {
1967 // Process FG and BG at once.
1968 if (!do_ME)
1969 do_ME = do_ME_fg | do_ME_bg;
1970 }
1971#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 }
1973 else
1974 {
1975 aep = syn_term_attr2entry(screen_attr);
1976 if (aep != NULL && aep->ae_u.term.stop != NULL)
1977 {
1978 if (STRCMP(aep->ae_u.term.stop, T_ME) == 0)
1979 do_ME = TRUE;
1980 else
1981 out_str(aep->ae_u.term.stop);
1982 }
1983 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001984 if (aep == NULL) // did ":syntax clear"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985 screen_attr = 0;
1986 else
1987 screen_attr = aep->ae_attr;
1988 }
1989
1990 /*
1991 * Often all ending-codes are equal to T_ME. Avoid outputting the
1992 * same sequence several times.
1993 */
1994 if (screen_attr & HL_STANDOUT)
1995 {
1996 if (STRCMP(T_SE, T_ME) == 0)
1997 do_ME = TRUE;
1998 else
1999 out_str(T_SE);
2000 }
Bram Moolenaar45a00002017-12-22 21:12:34 +01002001 if ((screen_attr & HL_UNDERCURL) && *T_UCE != NUL)
Bram Moolenaar8b9e20a2017-11-28 21:25:21 +01002002 {
2003 if (STRCMP(T_UCE, T_ME) == 0)
2004 do_ME = TRUE;
2005 else
2006 out_str(T_UCE);
2007 }
2008 if ((screen_attr & HL_UNDERLINE)
Bram Moolenaar45a00002017-12-22 21:12:34 +01002009 || ((screen_attr & HL_UNDERCURL) && *T_UCE == NUL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010 {
2011 if (STRCMP(T_UE, T_ME) == 0)
2012 do_ME = TRUE;
2013 else
2014 out_str(T_UE);
2015 }
2016 if (screen_attr & HL_ITALIC)
2017 {
2018 if (STRCMP(T_CZR, T_ME) == 0)
2019 do_ME = TRUE;
2020 else
2021 out_str(T_CZR);
2022 }
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002023 if (screen_attr & HL_STRIKETHROUGH)
2024 {
2025 if (STRCMP(T_STE, T_ME) == 0)
2026 do_ME = TRUE;
2027 else
2028 out_str(T_STE);
2029 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 if (do_ME || (screen_attr & (HL_BOLD | HL_INVERSE)))
2031 out_str(T_ME);
2032
Bram Moolenaar61be73b2016-04-29 22:59:22 +02002033#ifdef FEAT_TERMGUICOLORS
2034 if (p_tgc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035 {
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002036 if (cterm_normal_fg_gui_color != INVALCOLOR)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002037 term_fg_rgb_color(cterm_normal_fg_gui_color);
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002038 if (cterm_normal_bg_gui_color != INVALCOLOR)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002039 term_bg_rgb_color(cterm_normal_bg_gui_color);
Bram Moolenaare023e882020-05-31 16:42:30 +02002040 if (cterm_normal_ul_gui_color != INVALCOLOR)
2041 term_ul_rgb_color(cterm_normal_ul_gui_color);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002042 }
2043 else
2044#endif
2045 {
2046 if (t_colors > 1)
2047 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002048 // set Normal cterm colors
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002049 if (cterm_normal_fg_color != 0)
2050 term_fg_color(cterm_normal_fg_color - 1);
2051 if (cterm_normal_bg_color != 0)
2052 term_bg_color(cterm_normal_bg_color - 1);
Bram Moolenaare023e882020-05-31 16:42:30 +02002053 if (cterm_normal_ul_color != 0)
2054 term_ul_color(cterm_normal_ul_color - 1);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002055 if (cterm_normal_fg_bold)
2056 out_str(T_MD);
2057 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 }
2059 }
2060 }
2061 screen_attr = 0;
2062}
2063
2064/*
2065 * Reset the colors for a cterm. Used when leaving Vim.
2066 * The machine specific code may override this again.
2067 */
2068 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002069reset_cterm_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070{
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002071 if (IS_CTERM)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002073 // set Normal cterm colors
Bram Moolenaar61be73b2016-04-29 22:59:22 +02002074#ifdef FEAT_TERMGUICOLORS
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002075 if (p_tgc ? (cterm_normal_fg_gui_color != INVALCOLOR
2076 || cterm_normal_bg_gui_color != INVALCOLOR)
2077 : (cterm_normal_fg_color > 0 || cterm_normal_bg_color > 0))
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002078#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 if (cterm_normal_fg_color > 0 || cterm_normal_bg_color > 0)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002080#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 {
2082 out_str(T_OP);
2083 screen_attr = -1;
2084 }
2085 if (cterm_normal_fg_bold)
2086 {
2087 out_str(T_ME);
2088 screen_attr = -1;
2089 }
2090 }
2091}
2092
2093/*
2094 * Put character ScreenLines["off"] on the screen at position "row" and "col",
2095 * using the attributes from ScreenAttrs["off"].
2096 */
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02002097 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002098screen_char(unsigned off, int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099{
2100 int attr;
2101
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002102 // Check for illegal values, just in case (could happen just after
2103 // resizing).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 if (row >= screen_Rows || col >= screen_Columns)
2105 return;
2106
Bram Moolenaar33796b32019-06-08 16:01:13 +02002107 // Skip if under the popup menu.
2108 // Popup windows with zindex higher than POPUPMENU_ZINDEX go on top.
2109 if (pum_under_menu(row, col)
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002110#ifdef FEAT_PROP_POPUP
Bram Moolenaar33796b32019-06-08 16:01:13 +02002111 && screen_zindex <= POPUPMENU_ZINDEX
Bram Moolenaare2c453d2019-08-21 14:37:09 +02002112#endif
Bram Moolenaar33796b32019-06-08 16:01:13 +02002113 )
Bram Moolenaarae654382019-01-17 21:09:05 +01002114 return;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002115#ifdef FEAT_PROP_POPUP
Bram Moolenaarc662ec92019-06-23 00:15:57 +02002116 if (blocked_by_popup(row, col))
Bram Moolenaar33796b32019-06-08 16:01:13 +02002117 return;
2118#endif
2119
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002120 // Outputting a character in the last cell on the screen may scroll the
2121 // screen up. Only do it when the "xn" termcap property is set, otherwise
2122 // mark the character invalid (update it when scrolled up).
Bram Moolenaar494838a2015-02-10 19:20:37 +01002123 if (*T_XN == NUL
2124 && row == screen_Rows - 1 && col == screen_Columns - 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125#ifdef FEAT_RIGHTLEFT
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002126 // account for first command-line character in rightleft mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127 && !cmdmsg_rl
2128#endif
2129 )
2130 {
2131 ScreenAttrs[off] = (sattr_T)-1;
2132 return;
2133 }
2134
2135 /*
2136 * Stop highlighting first, so it's easier to move the cursor.
2137 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 if (screen_char_attr != 0)
2139 attr = screen_char_attr;
2140 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 attr = ScreenAttrs[off];
2142 if (screen_attr != attr)
2143 screen_stop_highlight();
2144
2145 windgoto(row, col);
2146
2147 if (screen_attr != attr)
2148 screen_start_highlight(attr);
2149
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 if (enc_utf8 && ScreenLinesUC[off] != 0)
2151 {
2152 char_u buf[MB_MAXBYTES + 1];
2153
Bram Moolenaarcb070082016-04-02 22:14:51 +02002154 if (utf_ambiguous_width(ScreenLinesUC[off]))
Bram Moolenaarfae8ed12017-12-12 22:29:30 +01002155 {
2156 if (*p_ambw == 'd'
Bram Moolenaara12a1612019-01-24 16:39:02 +01002157#ifdef FEAT_GUI
Bram Moolenaarfae8ed12017-12-12 22:29:30 +01002158 && !gui.in_use
Bram Moolenaara12a1612019-01-24 16:39:02 +01002159#endif
Bram Moolenaarfae8ed12017-12-12 22:29:30 +01002160 )
2161 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002162 // Clear the two screen cells. If the character is actually
2163 // single width it won't change the second cell.
Bram Moolenaarfae8ed12017-12-12 22:29:30 +01002164 out_str((char_u *)" ");
2165 term_windgoto(row, col);
2166 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002167 // not sure where the cursor is after drawing the ambiguous width
2168 // character
Bram Moolenaarcb070082016-04-02 22:14:51 +02002169 screen_cur_col = 9999;
Bram Moolenaarfae8ed12017-12-12 22:29:30 +01002170 }
Bram Moolenaarcb070082016-04-02 22:14:51 +02002171 else if (utf_char2cells(ScreenLinesUC[off]) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 ++screen_cur_col;
Bram Moolenaarfae8ed12017-12-12 22:29:30 +01002173
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002174 // Convert the UTF-8 character to bytes and write it.
Bram Moolenaarfae8ed12017-12-12 22:29:30 +01002175 buf[utfc_char2bytes(off, buf)] = NUL;
2176 out_str(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 }
2178 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180 out_flush_check();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181 out_char(ScreenLines[off]);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002182 // double-byte character in single-width cell
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2184 out_char(ScreenLines2[off]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 }
2186
2187 screen_cur_col++;
2188}
2189
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190/*
2191 * Used for enc_dbcs only: Put one double-wide character at ScreenLines["off"]
2192 * on the screen at position 'row' and 'col'.
2193 * The attributes of the first byte is used for all. This is required to
2194 * output the two bytes of a double-byte character with nothing in between.
2195 */
2196 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002197screen_char_2(unsigned off, int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002199 // Check for illegal values (could be wrong when screen was resized).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 if (off + 1 >= (unsigned)(screen_Rows * screen_Columns))
2201 return;
2202
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002203 // Outputting the last character on the screen may scrollup the screen.
2204 // Don't to it! Mark the character invalid (update it when scrolled up)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 if (row == screen_Rows - 1 && col >= screen_Columns - 2)
2206 {
2207 ScreenAttrs[off] = (sattr_T)-1;
2208 return;
2209 }
2210
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002211 // Output the first byte normally (positions the cursor), then write the
2212 // second byte directly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 screen_char(off, row, col);
2214 out_char(ScreenLines[off + 1]);
2215 ++screen_cur_col;
2216}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218/*
2219 * Draw a rectangle of the screen, inverted when "invert" is TRUE.
2220 * This uses the contents of ScreenLines[] and doesn't change it.
2221 */
2222 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002223screen_draw_rectangle(
2224 int row,
2225 int col,
2226 int height,
2227 int width,
2228 int invert)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229{
2230 int r, c;
2231 int off;
Bram Moolenaar367329b2007-08-30 11:53:22 +00002232 int max_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002234 // Can't use ScreenLines unless initialized
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002235 if (ScreenLines == NULL)
2236 return;
2237
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 if (invert)
2239 screen_char_attr = HL_INVERSE;
2240 for (r = row; r < row + height; ++r)
2241 {
2242 off = LineOffset[r];
Bram Moolenaar367329b2007-08-30 11:53:22 +00002243 max_off = off + screen_Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244 for (c = col; c < col + width; ++c)
2245 {
Bram Moolenaar367329b2007-08-30 11:53:22 +00002246 if (enc_dbcs != 0 && dbcs_off2cells(off + c, max_off) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 {
2248 screen_char_2(off + c, r, c);
2249 ++c;
2250 }
2251 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 {
2253 screen_char(off + c, r, c);
Bram Moolenaar367329b2007-08-30 11:53:22 +00002254 if (utf_off2cells(off + c, max_off) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255 ++c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 }
2257 }
2258 }
2259 screen_char_attr = 0;
2260}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262/*
2263 * Redraw the characters for a vertically split window.
2264 */
2265 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002266redraw_block(int row, int end, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267{
2268 int col;
2269 int width;
2270
2271# ifdef FEAT_CLIPBOARD
2272 clip_may_clear_selection(row, end - 1);
2273# endif
2274
2275 if (wp == NULL)
2276 {
2277 col = 0;
2278 width = Columns;
2279 }
2280 else
2281 {
2282 col = wp->w_wincol;
2283 width = wp->w_width;
2284 }
2285 screen_draw_rectangle(row, col, end - row, width, FALSE);
2286}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02002288 void
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02002289space_to_screenline(int off, int attr)
2290{
2291 ScreenLines[off] = ' ';
2292 ScreenAttrs[off] = attr;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02002293 if (enc_utf8)
2294 ScreenLinesUC[off] = 0;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02002295}
2296
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297/*
2298 * Fill the screen from 'start_row' to 'end_row', from 'start_col' to 'end_col'
2299 * with character 'c1' in first column followed by 'c2' in the other columns.
2300 * Use attributes 'attr'.
2301 */
2302 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002303screen_fill(
Bram Moolenaarc662ec92019-06-23 00:15:57 +02002304 int start_row,
2305 int end_row,
2306 int start_col,
2307 int end_col,
2308 int c1,
2309 int c2,
2310 int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311{
Bram Moolenaarc662ec92019-06-23 00:15:57 +02002312 int row;
2313 int col;
2314 int off;
2315 int end_off;
2316 int did_delete;
2317 int c;
2318 int norm_term;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319#if defined(FEAT_GUI) || defined(UNIX)
Bram Moolenaarc662ec92019-06-23 00:15:57 +02002320 int force_next = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321#endif
2322
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002323 if (end_row > screen_Rows) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 end_row = screen_Rows;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002325 if (end_col > screen_Columns) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 end_col = screen_Columns;
2327 if (ScreenLines == NULL
2328 || start_row >= end_row
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002329 || start_col >= end_col) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330 return;
2331
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002332 // it's a "normal" terminal when not in a GUI or cterm
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333 norm_term = (
2334#ifdef FEAT_GUI
2335 !gui.in_use &&
2336#endif
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002337 !IS_CTERM);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 for (row = start_row; row < end_row; ++row)
2339 {
Bram Moolenaarc236c162008-07-13 17:41:49 +00002340 if (has_mbyte
Bram Moolenaara12a1612019-01-24 16:39:02 +01002341#ifdef FEAT_GUI
Bram Moolenaarc236c162008-07-13 17:41:49 +00002342 && !gui.in_use
Bram Moolenaara12a1612019-01-24 16:39:02 +01002343#endif
Bram Moolenaarc236c162008-07-13 17:41:49 +00002344 )
2345 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002346 // When drawing over the right halve of a double-wide char clear
2347 // out the left halve. When drawing over the left halve of a
2348 // double wide-char clear out the right halve. Only needed in a
2349 // terminal.
Bram Moolenaar7693ec62008-07-24 18:29:37 +00002350 if (start_col > 0 && mb_fix_col(start_col, row) != start_col)
Bram Moolenaard91ffe92008-07-14 17:51:11 +00002351 screen_puts_len((char_u *)" ", 1, row, start_col - 1, 0);
Bram Moolenaara1aed622008-07-18 15:14:43 +00002352 if (end_col < screen_Columns && mb_fix_col(end_col, row) != end_col)
Bram Moolenaard91ffe92008-07-14 17:51:11 +00002353 screen_puts_len((char_u *)" ", 1, row, end_col, 0);
Bram Moolenaarc236c162008-07-13 17:41:49 +00002354 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 /*
2356 * Try to use delete-line termcap code, when no attributes or in a
2357 * "normal" terminal, where a bold/italic space is just a
2358 * space.
2359 */
2360 did_delete = FALSE;
2361 if (c2 == ' '
2362 && end_col == Columns
2363 && can_clear(T_CE)
2364 && (attr == 0
2365 || (norm_term
2366 && attr <= HL_ALL
2367 && ((attr & ~(HL_BOLD | HL_ITALIC)) == 0))))
2368 {
2369 /*
2370 * check if we really need to clear something
2371 */
2372 col = start_col;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002373 if (c1 != ' ') // don't clear first char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374 ++col;
2375
2376 off = LineOffset[row] + col;
2377 end_off = LineOffset[row] + end_col;
2378
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002379 // skip blanks (used often, keep it fast!)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 if (enc_utf8)
2381 while (off < end_off && ScreenLines[off] == ' '
2382 && ScreenAttrs[off] == 0 && ScreenLinesUC[off] == 0)
2383 ++off;
2384 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 while (off < end_off && ScreenLines[off] == ' '
2386 && ScreenAttrs[off] == 0)
2387 ++off;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002388 if (off < end_off) // something to be cleared
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 {
2390 col = off - LineOffset[row];
2391 screen_stop_highlight();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002392 term_windgoto(row, col);// clear rest of this screen line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 out_str(T_CE);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002394 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 col = end_col - col;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002396 while (col--) // clear chars in ScreenLines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 {
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02002398 space_to_screenline(off, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399 ++off;
2400 }
2401 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002402 did_delete = TRUE; // the chars are cleared now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 }
2404
2405 off = LineOffset[row] + start_col;
2406 c = c1;
2407 for (col = start_col; col < end_col; ++col)
2408 {
Bram Moolenaar33796b32019-06-08 16:01:13 +02002409 if ((ScreenLines[off] != c
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002410 || (enc_utf8 && (int)ScreenLinesUC[off]
2411 != (c >= 0x80 ? c : 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 || ScreenAttrs[off] != attr
2413#if defined(FEAT_GUI) || defined(UNIX)
2414 || force_next
2415#endif
2416 )
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002417#ifdef FEAT_PROP_POPUP
Bram Moolenaar33796b32019-06-08 16:01:13 +02002418 // Skip if under a(nother) popup.
Bram Moolenaarc662ec92019-06-23 00:15:57 +02002419 && !blocked_by_popup(row, col)
Bram Moolenaar33796b32019-06-08 16:01:13 +02002420#endif
2421 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 {
2423#if defined(FEAT_GUI) || defined(UNIX)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002424 // The bold trick may make a single row of pixels appear in
2425 // the next character. When a bold character is removed, the
2426 // next character should be redrawn too. This happens for our
2427 // own GUI and for some xterms.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 if (
2429# ifdef FEAT_GUI
2430 gui.in_use
2431# endif
2432# if defined(FEAT_GUI) && defined(UNIX)
2433 ||
2434# endif
2435# ifdef UNIX
2436 term_is_xterm
2437# endif
2438 )
2439 {
2440 if (ScreenLines[off] != ' '
2441 && (ScreenAttrs[off] > HL_ALL
2442 || ScreenAttrs[off] & HL_BOLD))
2443 force_next = TRUE;
2444 else
2445 force_next = FALSE;
2446 }
2447#endif
2448 ScreenLines[off] = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449 if (enc_utf8)
2450 {
2451 if (c >= 0x80)
2452 {
2453 ScreenLinesUC[off] = c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002454 ScreenLinesC[0][off] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 }
2456 else
2457 ScreenLinesUC[off] = 0;
2458 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 ScreenAttrs[off] = attr;
2460 if (!did_delete || c != ' ')
2461 screen_char(off, row, col);
2462 }
2463 ++off;
2464 if (col == start_col)
2465 {
2466 if (did_delete)
2467 break;
2468 c = c2;
2469 }
2470 }
2471 if (end_col == Columns)
2472 LineWraps[row] = FALSE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002473 if (row == Rows - 1) // overwritten the command line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474 {
2475 redraw_cmdline = TRUE;
Bram Moolenaar5bab5552018-04-13 20:41:29 +02002476 if (start_col == 0 && end_col == Columns
2477 && c1 == ' ' && c2 == ' ' && attr == 0)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002478 clear_cmdline = FALSE; // command line has been cleared
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002479 if (start_col == 0)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002480 mode_displayed = FALSE; // mode cleared or overwritten
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 }
2482 }
2483}
2484
2485/*
2486 * Check if there should be a delay. Used before clearing or redrawing the
2487 * screen or the command line.
2488 */
2489 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002490check_for_delay(int check_msg_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491{
2492 if ((emsg_on_display || (check_msg_scroll && msg_scroll))
2493 && !did_wait_return
Bram Moolenaar28ee8922020-10-28 20:20:00 +01002494 && emsg_silent == 0
2495 && !in_assert_fails)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496 {
2497 out_flush();
Bram Moolenaareda1da02019-11-17 17:06:33 +01002498 ui_delay(1006L, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499 emsg_on_display = FALSE;
2500 if (check_msg_scroll)
2501 msg_scroll = FALSE;
2502 }
2503}
2504
2505/*
Bram Moolenaarca57ab52019-04-13 14:53:16 +02002506 * Init TabPageIdxs[] to zero: Clicking outside of tabs has no effect.
2507 */
2508 static void
2509clear_TabPageIdxs(void)
2510{
2511 int scol;
2512
2513 for (scol = 0; scol < Columns; ++scol)
2514 TabPageIdxs[scol] = 0;
2515}
2516
2517/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 * screen_valid - allocate screen buffers if size changed
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002519 * If "doclear" is TRUE: clear screen if it has been resized.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002520 * Returns TRUE if there is a valid screen to write to.
2521 * Returns FALSE when starting up and screen not initialized yet.
2522 */
2523 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002524screen_valid(int doclear)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002526 screenalloc(doclear); // allocate screen buffers if size changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 return (ScreenLines != NULL);
2528}
2529
2530/*
2531 * Resize the shell to Rows and Columns.
2532 * Allocate ScreenLines[] and associated items.
2533 *
2534 * There may be some time between setting Rows and Columns and (re)allocating
2535 * ScreenLines[]. This happens when starting up and when (manually) changing
2536 * the shell size. Always use screen_Rows and screen_Columns to access items
2537 * in ScreenLines[]. Use Rows and Columns for positioning text etc. where the
2538 * final size of the shell is needed.
2539 */
2540 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002541screenalloc(int doclear)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542{
2543 int new_row, old_row;
2544#ifdef FEAT_GUI
2545 int old_Rows;
2546#endif
2547 win_T *wp;
2548 int outofmem = FALSE;
2549 int len;
2550 schar_T *new_ScreenLines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551 u8char_T *new_ScreenLinesUC = NULL;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002552 u8char_T *new_ScreenLinesC[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553 schar_T *new_ScreenLines2 = NULL;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002554 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555 sattr_T *new_ScreenAttrs;
2556 unsigned *new_LineOffset;
2557 char_u *new_LineWraps;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002558 short *new_TabPageIdxs;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002559#ifdef FEAT_PROP_POPUP
Bram Moolenaar33796b32019-06-08 16:01:13 +02002560 short *new_popup_mask;
Bram Moolenaar4c063a02019-06-10 21:24:12 +02002561 short *new_popup_mask_next;
Bram Moolenaarc662ec92019-06-23 00:15:57 +02002562 char *new_popup_transparent;
Bram Moolenaar33796b32019-06-08 16:01:13 +02002563#endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00002564 tabpage_T *tp;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002565 static int entered = FALSE; // avoid recursiveness
2566 static int done_outofmem_msg = FALSE; // did outofmem message
Bram Moolenaar87e817c2009-02-22 20:13:39 +00002567 int retry_count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568
Bram Moolenaar87e817c2009-02-22 20:13:39 +00002569retry:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 /*
2571 * Allocation of the screen buffers is done only when the size changes and
2572 * when Rows and Columns have been set and we have started doing full
2573 * screen stuff.
2574 */
2575 if ((ScreenLines != NULL
2576 && Rows == screen_Rows
2577 && Columns == screen_Columns
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578 && enc_utf8 == (ScreenLinesUC != NULL)
2579 && (enc_dbcs == DBCS_JPNU) == (ScreenLines2 != NULL)
Bram Moolenaara12a1612019-01-24 16:39:02 +01002580 && p_mco == Screen_mco)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 || Rows == 0
2582 || Columns == 0
2583 || (!full_screen && ScreenLines == NULL))
2584 return;
2585
2586 /*
2587 * It's possible that we produce an out-of-memory message below, which
2588 * will cause this function to be called again. To break the loop, just
2589 * return here.
2590 */
2591 if (entered)
2592 return;
2593 entered = TRUE;
2594
Bram Moolenaara3f2ecd2006-07-11 21:01:01 +00002595 /*
2596 * Note that the window sizes are updated before reallocating the arrays,
2597 * thus we must not redraw here!
2598 */
2599 ++RedrawingDisabled;
2600
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002601 win_new_shellsize(); // fit the windows in the new sized shell
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602
Bram Moolenaarb3f74062020-02-26 16:16:53 +01002603#ifdef FEAT_GUI_HAIKU
2604 vim_lock_screen(); // be safe, put it here
2605#endif
2606
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002607 comp_col(); // recompute columns for shown command and ruler
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608
2609 /*
2610 * We're changing the size of the screen.
2611 * - Allocate new arrays for ScreenLines and ScreenAttrs.
2612 * - Move lines from the old arrays into the new arrays, clear extra
2613 * lines (unless the screen is going to be cleared).
2614 * - Free the old arrays.
2615 *
2616 * If anything fails, make ScreenLines NULL, so we don't do anything!
2617 * Continuing with the old ScreenLines may result in a crash, because the
2618 * size is wrong.
2619 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002620 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621 win_free_lsize(wp);
Bram Moolenaar5e9b4542009-07-29 14:24:36 +00002622 if (aucmd_win != NULL)
2623 win_free_lsize(aucmd_win);
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002624#ifdef FEAT_PROP_POPUP
Bram Moolenaar8caaf822019-06-01 18:11:22 +02002625 // global popup windows
Bram Moolenaaraeea7212020-04-02 18:50:46 +02002626 FOR_ALL_POPUPWINS(wp)
Bram Moolenaar8caaf822019-06-01 18:11:22 +02002627 win_free_lsize(wp);
2628 // tab-local popup windows
2629 FOR_ALL_TABPAGES(tp)
Bram Moolenaaraeea7212020-04-02 18:50:46 +02002630 FOR_ALL_POPUPWINS_IN_TAB(tp, wp)
Bram Moolenaar8caaf822019-06-01 18:11:22 +02002631 win_free_lsize(wp);
2632#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002634 new_ScreenLines = LALLOC_MULT(schar_T, (Rows + 1) * Columns);
Bram Moolenaar216b7102010-03-23 13:56:59 +01002635 vim_memset(new_ScreenLinesC, 0, sizeof(u8char_T *) * MAX_MCO);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636 if (enc_utf8)
2637 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002638 new_ScreenLinesUC = LALLOC_MULT(u8char_T, (Rows + 1) * Columns);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002639 for (i = 0; i < p_mco; ++i)
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002640 new_ScreenLinesC[i] = LALLOC_CLEAR_MULT(u8char_T,
2641 (Rows + 1) * Columns);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 }
2643 if (enc_dbcs == DBCS_JPNU)
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002644 new_ScreenLines2 = LALLOC_MULT(schar_T, (Rows + 1) * Columns);
2645 new_ScreenAttrs = LALLOC_MULT(sattr_T, (Rows + 1) * Columns);
2646 new_LineOffset = LALLOC_MULT(unsigned, Rows);
2647 new_LineWraps = LALLOC_MULT(char_u, Rows);
2648 new_TabPageIdxs = LALLOC_MULT(short, Columns);
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002649#ifdef FEAT_PROP_POPUP
Bram Moolenaar33796b32019-06-08 16:01:13 +02002650 new_popup_mask = LALLOC_MULT(short, Rows * Columns);
Bram Moolenaar4c063a02019-06-10 21:24:12 +02002651 new_popup_mask_next = LALLOC_MULT(short, Rows * Columns);
Bram Moolenaarc662ec92019-06-23 00:15:57 +02002652 new_popup_transparent = LALLOC_MULT(char, Rows * Columns);
Bram Moolenaar33796b32019-06-08 16:01:13 +02002653#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00002655 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 {
2657 if (win_alloc_lines(wp) == FAIL)
2658 {
2659 outofmem = TRUE;
Bram Moolenaarbb9c7d12009-02-21 23:03:09 +00002660 goto give_up;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 }
2662 }
Bram Moolenaar5e9b4542009-07-29 14:24:36 +00002663 if (aucmd_win != NULL && aucmd_win->w_lines == NULL
2664 && win_alloc_lines(aucmd_win) == FAIL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002665 outofmem = TRUE;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002666#ifdef FEAT_PROP_POPUP
Bram Moolenaar8caaf822019-06-01 18:11:22 +02002667 // global popup windows
Bram Moolenaaraeea7212020-04-02 18:50:46 +02002668 FOR_ALL_POPUPWINS(wp)
Bram Moolenaar8caaf822019-06-01 18:11:22 +02002669 if (win_alloc_lines(wp) == FAIL)
2670 {
2671 outofmem = TRUE;
2672 goto give_up;
2673 }
2674 // tab-local popup windows
2675 FOR_ALL_TABPAGES(tp)
Bram Moolenaaraeea7212020-04-02 18:50:46 +02002676 FOR_ALL_POPUPWINS_IN_TAB(tp, wp)
Bram Moolenaar8caaf822019-06-01 18:11:22 +02002677 if (win_alloc_lines(wp) == FAIL)
2678 {
2679 outofmem = TRUE;
2680 goto give_up;
2681 }
2682#endif
2683
Bram Moolenaarbb9c7d12009-02-21 23:03:09 +00002684give_up:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002686 for (i = 0; i < p_mco; ++i)
2687 if (new_ScreenLinesC[i] == NULL)
2688 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689 if (new_ScreenLines == NULL
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002690 || (enc_utf8 && (new_ScreenLinesUC == NULL || i != p_mco))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 || (enc_dbcs == DBCS_JPNU && new_ScreenLines2 == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 || new_ScreenAttrs == NULL
2693 || new_LineOffset == NULL
2694 || new_LineWraps == NULL
Bram Moolenaarf740b292006-02-16 22:11:02 +00002695 || new_TabPageIdxs == NULL
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002696#ifdef FEAT_PROP_POPUP
Bram Moolenaar33796b32019-06-08 16:01:13 +02002697 || new_popup_mask == NULL
Bram Moolenaar4c063a02019-06-10 21:24:12 +02002698 || new_popup_mask_next == NULL
Bram Moolenaarc662ec92019-06-23 00:15:57 +02002699 || new_popup_transparent == NULL
Bram Moolenaar33796b32019-06-08 16:01:13 +02002700#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701 || outofmem)
2702 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002703 if (ScreenLines != NULL || !done_outofmem_msg)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002704 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002705 // guess the size
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002706 do_outofmem_msg((long_u)((Rows + 1) * Columns));
2707
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002708 // Remember we did this to avoid getting outofmem messages over
2709 // and over again.
Bram Moolenaar89d40322006-08-29 15:30:07 +00002710 done_outofmem_msg = TRUE;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002711 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01002712 VIM_CLEAR(new_ScreenLines);
Bram Moolenaard23a8232018-02-10 18:45:26 +01002713 VIM_CLEAR(new_ScreenLinesUC);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002714 for (i = 0; i < p_mco; ++i)
Bram Moolenaard23a8232018-02-10 18:45:26 +01002715 VIM_CLEAR(new_ScreenLinesC[i]);
2716 VIM_CLEAR(new_ScreenLines2);
Bram Moolenaard23a8232018-02-10 18:45:26 +01002717 VIM_CLEAR(new_ScreenAttrs);
2718 VIM_CLEAR(new_LineOffset);
2719 VIM_CLEAR(new_LineWraps);
2720 VIM_CLEAR(new_TabPageIdxs);
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002721#ifdef FEAT_PROP_POPUP
Bram Moolenaar33796b32019-06-08 16:01:13 +02002722 VIM_CLEAR(new_popup_mask);
Bram Moolenaar4c063a02019-06-10 21:24:12 +02002723 VIM_CLEAR(new_popup_mask_next);
Bram Moolenaarc662ec92019-06-23 00:15:57 +02002724 VIM_CLEAR(new_popup_transparent);
Bram Moolenaar33796b32019-06-08 16:01:13 +02002725#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726 }
2727 else
2728 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002729 done_outofmem_msg = FALSE;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002730
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 for (new_row = 0; new_row < Rows; ++new_row)
2732 {
2733 new_LineOffset[new_row] = new_row * Columns;
2734 new_LineWraps[new_row] = FALSE;
2735
2736 /*
2737 * If the screen is not going to be cleared, copy as much as
2738 * possible from the old screen to the new one and clear the rest
2739 * (used when resizing the window at the "--more--" prompt or when
2740 * executing an external command, for the GUI).
2741 */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002742 if (!doclear)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743 {
2744 (void)vim_memset(new_ScreenLines + new_row * Columns,
2745 ' ', (size_t)Columns * sizeof(schar_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 if (enc_utf8)
2747 {
2748 (void)vim_memset(new_ScreenLinesUC + new_row * Columns,
2749 0, (size_t)Columns * sizeof(u8char_T));
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002750 for (i = 0; i < p_mco; ++i)
2751 (void)vim_memset(new_ScreenLinesC[i]
2752 + new_row * Columns,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753 0, (size_t)Columns * sizeof(u8char_T));
2754 }
2755 if (enc_dbcs == DBCS_JPNU)
2756 (void)vim_memset(new_ScreenLines2 + new_row * Columns,
2757 0, (size_t)Columns * sizeof(schar_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002758 (void)vim_memset(new_ScreenAttrs + new_row * Columns,
2759 0, (size_t)Columns * sizeof(sattr_T));
2760 old_row = new_row + (screen_Rows - Rows);
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002761 if (old_row >= 0 && ScreenLines != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 {
2763 if (screen_Columns < Columns)
2764 len = screen_Columns;
2765 else
2766 len = Columns;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002767 // When switching to utf-8 don't copy characters, they
2768 // may be invalid now. Also when p_mco changes.
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002769 if (!(enc_utf8 && ScreenLinesUC == NULL)
2770 && p_mco == Screen_mco)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002771 mch_memmove(new_ScreenLines + new_LineOffset[new_row],
2772 ScreenLines + LineOffset[old_row],
2773 (size_t)len * sizeof(schar_T));
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002774 if (enc_utf8 && ScreenLinesUC != NULL
2775 && p_mco == Screen_mco)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776 {
2777 mch_memmove(new_ScreenLinesUC + new_LineOffset[new_row],
2778 ScreenLinesUC + LineOffset[old_row],
2779 (size_t)len * sizeof(u8char_T));
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002780 for (i = 0; i < p_mco; ++i)
2781 mch_memmove(new_ScreenLinesC[i]
2782 + new_LineOffset[new_row],
2783 ScreenLinesC[i] + LineOffset[old_row],
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784 (size_t)len * sizeof(u8char_T));
2785 }
2786 if (enc_dbcs == DBCS_JPNU && ScreenLines2 != NULL)
2787 mch_memmove(new_ScreenLines2 + new_LineOffset[new_row],
2788 ScreenLines2 + LineOffset[old_row],
2789 (size_t)len * sizeof(schar_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790 mch_memmove(new_ScreenAttrs + new_LineOffset[new_row],
2791 ScreenAttrs + LineOffset[old_row],
2792 (size_t)len * sizeof(sattr_T));
2793 }
2794 }
2795 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002796 // Use the last line of the screen for the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 current_ScreenLine = new_ScreenLines + Rows * Columns;
Bram Moolenaar6ace95e2019-08-13 23:09:49 +02002798
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002799#ifdef FEAT_PROP_POPUP
Bram Moolenaar6ace95e2019-08-13 23:09:49 +02002800 vim_memset(new_popup_mask, 0, Rows * Columns * sizeof(short));
2801 vim_memset(new_popup_transparent, 0, Rows * Columns * sizeof(char));
2802#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803 }
2804
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002805 free_screenlines();
2806
Bram Moolenaar6ace95e2019-08-13 23:09:49 +02002807 // NOTE: this may result in all pointers to become NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 ScreenLines = new_ScreenLines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002809 ScreenLinesUC = new_ScreenLinesUC;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002810 for (i = 0; i < p_mco; ++i)
2811 ScreenLinesC[i] = new_ScreenLinesC[i];
2812 Screen_mco = p_mco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813 ScreenLines2 = new_ScreenLines2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814 ScreenAttrs = new_ScreenAttrs;
2815 LineOffset = new_LineOffset;
2816 LineWraps = new_LineWraps;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002817 TabPageIdxs = new_TabPageIdxs;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002818#ifdef FEAT_PROP_POPUP
Bram Moolenaar33796b32019-06-08 16:01:13 +02002819 popup_mask = new_popup_mask;
Bram Moolenaarc662ec92019-06-23 00:15:57 +02002820 popup_mask_next = new_popup_mask_next;
2821 popup_transparent = new_popup_transparent;
Bram Moolenaar33796b32019-06-08 16:01:13 +02002822 popup_mask_refresh = TRUE;
2823#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002824
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002825 // It's important that screen_Rows and screen_Columns reflect the actual
2826 // size of ScreenLines[]. Set them before calling anything.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827#ifdef FEAT_GUI
2828 old_Rows = screen_Rows;
2829#endif
2830 screen_Rows = Rows;
2831 screen_Columns = Columns;
2832
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002833 must_redraw = CLEAR; // need to clear the screen later
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002834 if (doclear)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835 screenclear2();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836#ifdef FEAT_GUI
2837 else if (gui.in_use
2838 && !gui.starting
2839 && ScreenLines != NULL
2840 && old_Rows != Rows)
2841 {
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002842 gui_redraw_block(0, 0, (int)Rows - 1, (int)Columns - 1, 0);
2843
2844 // Adjust the position of the cursor, for when executing an external
2845 // command.
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002846 if (msg_row >= Rows) // Rows got smaller
2847 msg_row = Rows - 1; // put cursor at last row
2848 else if (Rows > old_Rows) // Rows got bigger
2849 msg_row += Rows - old_Rows; // put cursor in same place
2850 if (msg_col >= Columns) // Columns got smaller
2851 msg_col = Columns - 1; // put cursor at last column
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 }
2853#endif
Bram Moolenaarca57ab52019-04-13 14:53:16 +02002854 clear_TabPageIdxs();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855
Bram Moolenaarb3f74062020-02-26 16:16:53 +01002856#ifdef FEAT_GUI_HAIKU
2857 vim_unlock_screen();
2858#endif
2859
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860 entered = FALSE;
Bram Moolenaara3f2ecd2006-07-11 21:01:01 +00002861 --RedrawingDisabled;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00002862
Bram Moolenaar87e817c2009-02-22 20:13:39 +00002863 /*
2864 * Do not apply autocommands more than 3 times to avoid an endless loop
2865 * in case applying autocommands always changes Rows or Columns.
2866 */
2867 if (starting == 0 && ++retry_count <= 3)
2868 {
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00002869 apply_autocmds(EVENT_VIMRESIZED, NULL, NULL, FALSE, curbuf);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002870 // In rare cases, autocommands may have altered Rows or Columns,
2871 // jump back to check if we need to allocate the screen again.
Bram Moolenaar87e817c2009-02-22 20:13:39 +00002872 goto retry;
2873 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874}
2875
2876 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002877free_screenlines(void)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002878{
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002879 int i;
2880
Bram Moolenaar33796b32019-06-08 16:01:13 +02002881 VIM_CLEAR(ScreenLinesUC);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002882 for (i = 0; i < Screen_mco; ++i)
Bram Moolenaar33796b32019-06-08 16:01:13 +02002883 VIM_CLEAR(ScreenLinesC[i]);
2884 VIM_CLEAR(ScreenLines2);
2885 VIM_CLEAR(ScreenLines);
2886 VIM_CLEAR(ScreenAttrs);
2887 VIM_CLEAR(LineOffset);
2888 VIM_CLEAR(LineWraps);
2889 VIM_CLEAR(TabPageIdxs);
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002890#ifdef FEAT_PROP_POPUP
Bram Moolenaar33796b32019-06-08 16:01:13 +02002891 VIM_CLEAR(popup_mask);
Bram Moolenaar4c063a02019-06-10 21:24:12 +02002892 VIM_CLEAR(popup_mask_next);
Bram Moolenaarc662ec92019-06-23 00:15:57 +02002893 VIM_CLEAR(popup_transparent);
Bram Moolenaar33796b32019-06-08 16:01:13 +02002894#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002895}
2896
2897 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002898screenclear(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899{
2900 check_for_delay(FALSE);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002901 screenalloc(FALSE); // allocate screen buffers if size changed
2902 screenclear2(); // clear the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903}
2904
2905 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002906screenclear2(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907{
2908 int i;
2909
2910 if (starting == NO_SCREEN || ScreenLines == NULL
2911#ifdef FEAT_GUI
2912 || (gui.in_use && gui.starting)
2913#endif
2914 )
2915 return;
2916
2917#ifdef FEAT_GUI
2918 if (!gui.in_use)
2919#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002920 screen_attr = -1; // force setting the Normal colors
2921 screen_stop_highlight(); // don't want highlighting here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922
2923#ifdef FEAT_CLIPBOARD
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002924 // disable selection without redrawing it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925 clip_scroll_selection(9999);
2926#endif
2927
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002928 // blank out ScreenLines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929 for (i = 0; i < Rows; ++i)
2930 {
Bram Moolenaarcfce7172017-08-17 20:31:48 +02002931 lineclear(LineOffset[i], (int)Columns, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932 LineWraps[i] = FALSE;
2933 }
2934
2935 if (can_clear(T_CL))
2936 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002937 out_str(T_CL); // clear the display
Bram Moolenaar071d4272004-06-13 20:20:40 +00002938 clear_cmdline = FALSE;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002939 mode_displayed = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940 }
2941 else
2942 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002943 // can't clear the screen, mark all chars with invalid attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944 for (i = 0; i < Rows; ++i)
2945 lineinvalid(LineOffset[i], (int)Columns);
2946 clear_cmdline = TRUE;
2947 }
2948
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002949 screen_cleared = TRUE; // can use contents of ScreenLines now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950
2951 win_rest_invalid(firstwin);
2952 redraw_cmdline = TRUE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002953 redraw_tabline = TRUE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002954 if (must_redraw == CLEAR) // no need to clear again
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955 must_redraw = NOT_VALID;
2956 compute_cmdrow();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002957 msg_row = cmdline_row; // put cursor on last line for messages
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958 msg_col = 0;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002959 screen_start(); // don't know where cursor is now
2960 msg_scrolled = 0; // can't scroll back
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961 msg_didany = FALSE;
2962 msg_didout = FALSE;
2963}
2964
2965/*
2966 * Clear one line in ScreenLines.
2967 */
2968 static void
Bram Moolenaarcfce7172017-08-17 20:31:48 +02002969lineclear(unsigned off, int width, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970{
2971 (void)vim_memset(ScreenLines + off, ' ', (size_t)width * sizeof(schar_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972 if (enc_utf8)
2973 (void)vim_memset(ScreenLinesUC + off, 0,
2974 (size_t)width * sizeof(u8char_T));
Bram Moolenaarcfce7172017-08-17 20:31:48 +02002975 (void)vim_memset(ScreenAttrs + off, attr, (size_t)width * sizeof(sattr_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976}
2977
2978/*
2979 * Mark one line in ScreenLines invalid by setting the attributes to an
2980 * invalid value.
2981 */
2982 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002983lineinvalid(unsigned off, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984{
2985 (void)vim_memset(ScreenAttrs + off, -1, (size_t)width * sizeof(sattr_T));
2986}
2987
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988/*
Bram Moolenaar96916ac2020-07-08 23:09:28 +02002989 * To be called when characters were sent to the terminal directly, outputting
2990 * test on "screen_lnum".
2991 */
2992 void
2993line_was_clobbered(int screen_lnum)
2994{
2995 lineinvalid(LineOffset[screen_lnum], (int)Columns);
2996}
2997
2998/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002999 * Copy part of a Screenline for vertically split window "wp".
3000 */
3001 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003002linecopy(int to, int from, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003{
3004 unsigned off_to = LineOffset[to] + wp->w_wincol;
3005 unsigned off_from = LineOffset[from] + wp->w_wincol;
3006
3007 mch_memmove(ScreenLines + off_to, ScreenLines + off_from,
3008 wp->w_width * sizeof(schar_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009 if (enc_utf8)
3010 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003011 int i;
3012
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 mch_memmove(ScreenLinesUC + off_to, ScreenLinesUC + off_from,
3014 wp->w_width * sizeof(u8char_T));
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003015 for (i = 0; i < p_mco; ++i)
3016 mch_memmove(ScreenLinesC[i] + off_to, ScreenLinesC[i] + off_from,
3017 wp->w_width * sizeof(u8char_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018 }
3019 if (enc_dbcs == DBCS_JPNU)
3020 mch_memmove(ScreenLines2 + off_to, ScreenLines2 + off_from,
3021 wp->w_width * sizeof(schar_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 mch_memmove(ScreenAttrs + off_to, ScreenAttrs + off_from,
3023 wp->w_width * sizeof(sattr_T));
3024}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025
3026/*
3027 * Return TRUE if clearing with term string "p" would work.
3028 * It can't work when the string is empty or it won't set the right background.
Bram Moolenaar33796b32019-06-08 16:01:13 +02003029 * Don't clear to end-of-line when there are popups, it may cause flicker.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030 */
3031 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003032can_clear(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033{
3034 return (*p != NUL && (t_colors <= 1
3035#ifdef FEAT_GUI
3036 || gui.in_use
3037#endif
Bram Moolenaar61be73b2016-04-29 22:59:22 +02003038#ifdef FEAT_TERMGUICOLORS
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02003039 || (p_tgc && cterm_normal_bg_gui_color == INVALCOLOR)
Bram Moolenaard18f6722016-06-17 13:18:49 +02003040 || (!p_tgc && cterm_normal_bg_color == 0)
3041#else
3042 || cterm_normal_bg_color == 0
Bram Moolenaar8a633e32016-04-21 21:10:14 +02003043#endif
Bram Moolenaar33796b32019-06-08 16:01:13 +02003044 || *T_UT != NUL)
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003045#ifdef FEAT_PROP_POPUP
Bram Moolenaar33796b32019-06-08 16:01:13 +02003046 && !(p == T_CE && popup_visible)
3047#endif
3048 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049}
3050
3051/*
3052 * Reset cursor position. Use whenever cursor was moved because of outputting
3053 * something directly to the screen (shell commands) or a terminal control
3054 * code.
3055 */
3056 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003057screen_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058{
3059 screen_cur_row = screen_cur_col = 9999;
3060}
3061
3062/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063 * Move the cursor to position "row","col" in the screen.
3064 * This tries to find the most efficient way to move, minimizing the number of
3065 * characters sent to the terminal.
3066 */
3067 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003068windgoto(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069{
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003070 sattr_T *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071 int i;
3072 int plan;
3073 int cost;
3074 int wouldbe_col;
3075 int noinvcurs;
3076 char_u *bs;
3077 int goto_cost;
3078 int attr;
3079
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003080#define GOTO_COST 7 // assume a term_windgoto() takes about 7 chars
3081#define HIGHL_COST 5 // assume unhighlight takes 5 chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082
3083#define PLAN_LE 1
3084#define PLAN_CR 2
3085#define PLAN_NL 3
3086#define PLAN_WRITE 4
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003087 // Can't use ScreenLines unless initialized
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088 if (ScreenLines == NULL)
3089 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090 if (col != screen_cur_col || row != screen_cur_row)
3091 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003092 // Check for valid position.
3093 if (row < 0) // window without text lines?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094 row = 0;
3095 if (row >= screen_Rows)
3096 row = screen_Rows - 1;
3097 if (col >= screen_Columns)
3098 col = screen_Columns - 1;
3099
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003100 // check if no cursor movement is allowed in highlight mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101 if (screen_attr && *T_MS == NUL)
3102 noinvcurs = HIGHL_COST;
3103 else
3104 noinvcurs = 0;
3105 goto_cost = GOTO_COST + noinvcurs;
3106
3107 /*
3108 * Plan how to do the positioning:
3109 * 1. Use CR to move it to column 0, same row.
3110 * 2. Use T_LE to move it a few columns to the left.
3111 * 3. Use NL to move a few lines down, column 0.
3112 * 4. Move a few columns to the right with T_ND or by writing chars.
3113 *
3114 * Don't do this if the cursor went beyond the last column, the cursor
3115 * position is unknown then (some terminals wrap, some don't )
3116 *
Bram Moolenaar2c7a7632007-05-10 18:19:11 +00003117 * First check if the highlighting attributes allow us to write
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118 * characters to move the cursor to the right.
3119 */
3120 if (row >= screen_cur_row && screen_cur_col < Columns)
3121 {
3122 /*
3123 * If the cursor is in the same row, bigger col, we can use CR
3124 * or T_LE.
3125 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003126 bs = NULL; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127 attr = screen_attr;
3128 if (row == screen_cur_row && col < screen_cur_col)
3129 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003130 // "le" is preferred over "bc", because "bc" is obsolete
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131 if (*T_LE)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003132 bs = T_LE; // "cursor left"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003134 bs = T_BC; // "backspace character (old)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135 if (*bs)
3136 cost = (screen_cur_col - col) * (int)STRLEN(bs);
3137 else
3138 cost = 999;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003139 if (col + 1 < cost) // using CR is less characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 {
3141 plan = PLAN_CR;
3142 wouldbe_col = 0;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003143 cost = 1; // CR is just one character
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 }
3145 else
3146 {
3147 plan = PLAN_LE;
3148 wouldbe_col = col;
3149 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003150 if (noinvcurs) // will stop highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151 {
3152 cost += noinvcurs;
3153 attr = 0;
3154 }
3155 }
3156
3157 /*
3158 * If the cursor is above where we want to be, we can use CR LF.
3159 */
3160 else if (row > screen_cur_row)
3161 {
3162 plan = PLAN_NL;
3163 wouldbe_col = 0;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003164 cost = (row - screen_cur_row) * 2; // CR LF
3165 if (noinvcurs) // will stop highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166 {
3167 cost += noinvcurs;
3168 attr = 0;
3169 }
3170 }
3171
3172 /*
3173 * If the cursor is in the same row, smaller col, just use write.
3174 */
3175 else
3176 {
3177 plan = PLAN_WRITE;
3178 wouldbe_col = screen_cur_col;
3179 cost = 0;
3180 }
3181
3182 /*
3183 * Check if any characters that need to be written have the
3184 * correct attributes. Also avoid UTF-8 characters.
3185 */
3186 i = col - wouldbe_col;
3187 if (i > 0)
3188 cost += i;
3189 if (cost < goto_cost && i > 0)
3190 {
3191 /*
3192 * Check if the attributes are correct without additionally
3193 * stopping highlighting.
3194 */
3195 p = ScreenAttrs + LineOffset[row] + wouldbe_col;
3196 while (i && *p++ == attr)
3197 --i;
3198 if (i != 0)
3199 {
3200 /*
3201 * Try if it works when highlighting is stopped here.
3202 */
3203 if (*--p == 0)
3204 {
3205 cost += noinvcurs;
3206 while (i && *p++ == 0)
3207 --i;
3208 }
3209 if (i != 0)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003210 cost = 999; // different attributes, don't do it
Bram Moolenaar071d4272004-06-13 20:20:40 +00003211 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212 if (enc_utf8)
3213 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003214 // Don't use an UTF-8 char for positioning, it's slow.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215 for (i = wouldbe_col; i < col; ++i)
3216 if (ScreenLinesUC[LineOffset[row] + i] != 0)
3217 {
3218 cost = 999;
3219 break;
3220 }
3221 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222 }
3223
3224 /*
3225 * We can do it without term_windgoto()!
3226 */
3227 if (cost < goto_cost)
3228 {
3229 if (plan == PLAN_LE)
3230 {
3231 if (noinvcurs)
3232 screen_stop_highlight();
3233 while (screen_cur_col > col)
3234 {
3235 out_str(bs);
3236 --screen_cur_col;
3237 }
3238 }
3239 else if (plan == PLAN_CR)
3240 {
3241 if (noinvcurs)
3242 screen_stop_highlight();
3243 out_char('\r');
3244 screen_cur_col = 0;
3245 }
3246 else if (plan == PLAN_NL)
3247 {
3248 if (noinvcurs)
3249 screen_stop_highlight();
3250 while (screen_cur_row < row)
3251 {
3252 out_char('\n');
3253 ++screen_cur_row;
3254 }
3255 screen_cur_col = 0;
3256 }
3257
3258 i = col - screen_cur_col;
3259 if (i > 0)
3260 {
3261 /*
3262 * Use cursor-right if it's one character only. Avoids
3263 * removing a line of pixels from the last bold char, when
3264 * using the bold trick in the GUI.
3265 */
3266 if (T_ND[0] != NUL && T_ND[1] == NUL)
3267 {
3268 while (i-- > 0)
3269 out_char(*T_ND);
3270 }
3271 else
3272 {
3273 int off;
3274
3275 off = LineOffset[row] + screen_cur_col;
3276 while (i-- > 0)
3277 {
3278 if (ScreenAttrs[off] != screen_attr)
3279 screen_stop_highlight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003280 out_flush_check();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281 out_char(ScreenLines[off]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282 if (enc_dbcs == DBCS_JPNU
3283 && ScreenLines[off] == 0x8e)
3284 out_char(ScreenLines2[off]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285 ++off;
3286 }
3287 }
3288 }
3289 }
3290 }
3291 else
3292 cost = 999;
3293
3294 if (cost >= goto_cost)
3295 {
3296 if (noinvcurs)
3297 screen_stop_highlight();
Bram Moolenaar597a4222014-06-25 14:39:50 +02003298 if (row == screen_cur_row && (col > screen_cur_col)
3299 && *T_CRI != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300 term_cursor_right(col - screen_cur_col);
3301 else
3302 term_windgoto(row, col);
3303 }
3304 screen_cur_row = row;
3305 screen_cur_col = col;
3306 }
3307}
3308
3309/*
3310 * Set cursor to its position in the current window.
3311 */
3312 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003313setcursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003314{
Bram Moolenaar987723e2018-03-06 11:43:04 +01003315 setcursor_mayforce(FALSE);
3316}
3317
3318/*
3319 * Set cursor to its position in the current window.
3320 * When "force" is TRUE also when not redrawing.
3321 */
3322 void
3323setcursor_mayforce(int force)
3324{
3325 if (force || redrawing())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326 {
3327 validate_cursor();
3328 windgoto(W_WINROW(curwin) + curwin->w_wrow,
Bram Moolenaar53f81742017-09-22 14:35:51 +02003329 curwin->w_wincol + (
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330#ifdef FEAT_RIGHTLEFT
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003331 // With 'rightleft' set and the cursor on a double-wide
3332 // character, position it on the leftmost column.
Bram Moolenaara12a1612019-01-24 16:39:02 +01003333 curwin->w_p_rl ? ((int)curwin->w_width - curwin->w_wcol
3334 - ((has_mbyte
Bram Moolenaar561f9db2008-02-20 13:16:29 +00003335 && (*mb_ptr2cells)(ml_get_cursor()) == 2
Bram Moolenaara12a1612019-01-24 16:39:02 +01003336 && vim_isprintc(gchar_cursor())) ? 2 : 1)) :
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337#endif
3338 curwin->w_wcol));
3339 }
3340}
3341
3342
3343/*
Bram Moolenaar86033562017-07-12 20:24:41 +02003344 * Insert 'line_count' lines at 'row' in window 'wp'.
3345 * If 'invalid' is TRUE the wp->w_lines[].wl_lnum is invalidated.
3346 * If 'mayclear' is TRUE the screen will be cleared if it is faster than
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347 * scrolling.
3348 * Returns FAIL if the lines are not inserted, OK for success.
3349 */
3350 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003351win_ins_lines(
3352 win_T *wp,
3353 int row,
3354 int line_count,
3355 int invalid,
3356 int mayclear)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003357{
3358 int did_delete;
3359 int nextrow;
3360 int lastrow;
3361 int retval;
3362
3363 if (invalid)
3364 wp->w_lines_valid = 0;
3365
3366 if (wp->w_height < 5)
3367 return FAIL;
3368
3369 if (line_count > wp->w_height - row)
3370 line_count = wp->w_height - row;
3371
Bram Moolenaarcfce7172017-08-17 20:31:48 +02003372 retval = win_do_lines(wp, row, line_count, mayclear, FALSE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373 if (retval != MAYBE)
3374 return retval;
3375
3376 /*
3377 * If there is a next window or a status line, we first try to delete the
3378 * lines at the bottom to avoid messing what is after the window.
Bram Moolenaarc363fe12019-08-04 18:13:46 +02003379 * If this fails and there are following windows, don't do anything to
3380 * avoid messing up those windows, better just redraw.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381 */
3382 did_delete = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383 if (wp->w_next != NULL || wp->w_status_height)
3384 {
3385 if (screen_del_lines(0, W_WINROW(wp) + wp->w_height - line_count,
Bram Moolenaarcfce7172017-08-17 20:31:48 +02003386 line_count, (int)Rows, FALSE, 0, NULL) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387 did_delete = TRUE;
3388 else if (wp->w_next)
3389 return FAIL;
3390 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391 /*
3392 * if no lines deleted, blank the lines that will end up below the window
3393 */
3394 if (!did_delete)
3395 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396 wp->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397 redraw_cmdline = TRUE;
Bram Moolenaare0de17d2017-09-24 16:24:34 +02003398 nextrow = W_WINROW(wp) + wp->w_height + wp->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 lastrow = nextrow + line_count;
3400 if (lastrow > Rows)
3401 lastrow = Rows;
3402 screen_fill(nextrow - line_count, lastrow - line_count,
Bram Moolenaar53f81742017-09-22 14:35:51 +02003403 wp->w_wincol, (int)W_ENDCOL(wp),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404 ' ', ' ', 0);
3405 }
3406
Bram Moolenaarcfce7172017-08-17 20:31:48 +02003407 if (screen_ins_lines(0, W_WINROW(wp) + row, line_count, (int)Rows, 0, NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 == FAIL)
3409 {
Bram Moolenaarc363fe12019-08-04 18:13:46 +02003410 // deletion will have messed up other windows
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411 if (did_delete)
3412 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413 wp->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 win_rest_invalid(W_NEXT(wp));
3415 }
3416 return FAIL;
3417 }
3418
3419 return OK;
3420}
3421
3422/*
Bram Moolenaar86033562017-07-12 20:24:41 +02003423 * Delete "line_count" window lines at "row" in window "wp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424 * If "invalid" is TRUE curwin->w_lines[] is invalidated.
3425 * If "mayclear" is TRUE the screen will be cleared if it is faster than
3426 * scrolling
3427 * Return OK for success, FAIL if the lines are not deleted.
3428 */
3429 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003430win_del_lines(
3431 win_T *wp,
3432 int row,
3433 int line_count,
3434 int invalid,
Bram Moolenaarcfce7172017-08-17 20:31:48 +02003435 int mayclear,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003436 int clear_attr) // for clearing lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437{
3438 int retval;
3439
3440 if (invalid)
3441 wp->w_lines_valid = 0;
3442
3443 if (line_count > wp->w_height - row)
3444 line_count = wp->w_height - row;
3445
Bram Moolenaarcfce7172017-08-17 20:31:48 +02003446 retval = win_do_lines(wp, row, line_count, mayclear, TRUE, clear_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447 if (retval != MAYBE)
3448 return retval;
3449
3450 if (screen_del_lines(0, W_WINROW(wp) + row, line_count,
Bram Moolenaarcfce7172017-08-17 20:31:48 +02003451 (int)Rows, FALSE, clear_attr, NULL) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452 return FAIL;
3453
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 /*
3455 * If there are windows or status lines below, try to put them at the
3456 * correct place. If we can't do that, they have to be redrawn.
3457 */
3458 if (wp->w_next || wp->w_status_height || cmdline_row < Rows - 1)
3459 {
3460 if (screen_ins_lines(0, W_WINROW(wp) + wp->w_height - line_count,
Bram Moolenaarcfce7172017-08-17 20:31:48 +02003461 line_count, (int)Rows, clear_attr, NULL) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462 {
3463 wp->w_redr_status = TRUE;
3464 win_rest_invalid(wp->w_next);
3465 }
3466 }
3467 /*
3468 * If this is the last window and there is no status line, redraw the
3469 * command line later.
3470 */
3471 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472 redraw_cmdline = TRUE;
3473 return OK;
3474}
3475
3476/*
3477 * Common code for win_ins_lines() and win_del_lines().
3478 * Returns OK or FAIL when the work has been done.
3479 * Returns MAYBE when not finished yet.
3480 */
3481 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01003482win_do_lines(
3483 win_T *wp,
3484 int row,
3485 int line_count,
3486 int mayclear,
Bram Moolenaarcfce7172017-08-17 20:31:48 +02003487 int del,
3488 int clear_attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489{
3490 int retval;
3491
3492 if (!redrawing() || line_count <= 0)
3493 return FAIL;
3494
Bram Moolenaar33796b32019-06-08 16:01:13 +02003495 // When inserting lines would result in loss of command output, just redraw
3496 // the lines.
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003497 if (no_win_do_lines_ins && !del)
3498 return FAIL;
3499
Bram Moolenaar33796b32019-06-08 16:01:13 +02003500 // only a few lines left: redraw is faster
Bram Moolenaar4033c552017-09-16 20:54:51 +02003501 if (mayclear && Rows - line_count < 5 && wp->w_width == Columns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 {
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003503 if (!no_win_do_lines_ins)
Bram Moolenaar33796b32019-06-08 16:01:13 +02003504 screenclear(); // will set wp->w_lines_valid to 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505 return FAIL;
3506 }
3507
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003508#ifdef FEAT_PROP_POPUP
Bram Moolenaar4c063a02019-06-10 21:24:12 +02003509 // this doesn't work when there are popups visible
Bram Moolenaar33796b32019-06-08 16:01:13 +02003510 if (popup_visible)
3511 return FAIL;
3512#endif
3513
3514 // Delete all remaining lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515 if (row + line_count >= wp->w_height)
3516 {
3517 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + wp->w_height,
Bram Moolenaar53f81742017-09-22 14:35:51 +02003518 wp->w_wincol, (int)W_ENDCOL(wp),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519 ' ', ' ', 0);
3520 return OK;
3521 }
3522
3523 /*
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003524 * When scrolling, the message on the command line should be cleared,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003525 * otherwise it will stay there forever.
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003526 * Don't do this when avoiding to insert lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527 */
Bram Moolenaar29ae3772017-04-30 19:39:39 +02003528 if (!no_win_do_lines_ins)
3529 clear_cmdline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530
3531 /*
3532 * If the terminal can set a scroll region, use that.
3533 * Always do this in a vertically split window. This will redraw from
3534 * ScreenLines[] when t_CV isn't defined. That's faster than using
3535 * win_line().
3536 * Don't use a scroll region when we are going to redraw the text, writing
Bram Moolenaar48e330a2016-02-23 14:53:34 +01003537 * a character in the lower right corner of the scroll region may cause a
3538 * scroll-up .
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539 */
Bram Moolenaar02631462017-09-22 15:20:32 +02003540 if (scroll_region || wp->w_width != Columns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542 if (scroll_region && (wp->w_width == Columns || *T_CSV != NUL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003543 scroll_region_set(wp, row);
3544 if (del)
3545 retval = screen_del_lines(W_WINROW(wp) + row, 0, line_count,
Bram Moolenaarcfce7172017-08-17 20:31:48 +02003546 wp->w_height - row, FALSE, clear_attr, wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547 else
3548 retval = screen_ins_lines(W_WINROW(wp) + row, 0, line_count,
Bram Moolenaarcfce7172017-08-17 20:31:48 +02003549 wp->w_height - row, clear_attr, wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550 if (scroll_region && (wp->w_width == Columns || *T_CSV != NUL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551 scroll_region_reset();
3552 return retval;
3553 }
3554
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003555 if (wp->w_next != NULL && p_tf) // don't delete/insert on fast terminal
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557
3558 return MAYBE;
3559}
3560
3561/*
3562 * window 'wp' and everything after it is messed up, mark it for redraw
3563 */
3564 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003565win_rest_invalid(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003566{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567 while (wp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568 {
3569 redraw_win_later(wp, NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003570 wp->w_redr_status = TRUE;
3571 wp = wp->w_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 }
3573 redraw_cmdline = TRUE;
3574}
3575
3576/*
3577 * The rest of the routines in this file perform screen manipulations. The
3578 * given operation is performed physically on the screen. The corresponding
3579 * change is also made to the internal screen image. In this way, the editor
3580 * anticipates the effect of editing changes on the appearance of the screen.
3581 * That way, when we call screenupdate a complete redraw isn't usually
3582 * necessary. Another advantage is that we can keep adding code to anticipate
3583 * screen changes, and in the meantime, everything still works.
3584 */
3585
3586/*
3587 * types for inserting or deleting lines
3588 */
3589#define USE_T_CAL 1
3590#define USE_T_CDL 2
3591#define USE_T_AL 3
3592#define USE_T_CE 4
3593#define USE_T_DL 5
3594#define USE_T_SR 6
3595#define USE_NL 7
3596#define USE_T_CD 8
3597#define USE_REDRAW 9
3598
3599/*
3600 * insert lines on the screen and update ScreenLines[]
3601 * 'end' is the line after the scrolled part. Normally it is Rows.
3602 * When scrolling region used 'off' is the offset from the top for the region.
3603 * 'row' and 'end' are relative to the start of the region.
3604 *
3605 * return FAIL for failure, OK for success.
3606 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003607 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003608screen_ins_lines(
3609 int off,
3610 int row,
3611 int line_count,
3612 int end,
Bram Moolenaarcfce7172017-08-17 20:31:48 +02003613 int clear_attr,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003614 win_T *wp) // NULL or window to use width from
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615{
3616 int i;
3617 int j;
3618 unsigned temp;
3619 int cursor_row;
Bram Moolenaarbfa42462018-06-16 16:20:52 +02003620 int cursor_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003621 int type;
3622 int result_empty;
3623 int can_ce = can_clear(T_CE);
3624
3625 /*
3626 * FAIL if
3627 * - there is no valid screen
3628 * - the screen has to be redrawn completely
3629 * - the line count is less than one
3630 * - the line count is more than 'ttyscroll'
Bram Moolenaar80dd3f92017-07-19 12:51:52 +02003631 * - redrawing for a callback and there is a modeless selection
Bram Moolenaar33796b32019-06-08 16:01:13 +02003632 * - there is a popup window
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 */
Bram Moolenaar33796b32019-06-08 16:01:13 +02003634 if (!screen_valid(TRUE)
3635 || line_count <= 0 || line_count > p_ttyscroll
Bram Moolenaar80dd3f92017-07-19 12:51:52 +02003636#ifdef FEAT_CLIPBOARD
3637 || (clip_star.state != SELECT_CLEARED
3638 && redrawing_for_callback > 0)
3639#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003640#ifdef FEAT_PROP_POPUP
Bram Moolenaar33796b32019-06-08 16:01:13 +02003641 || popup_visible
3642#endif
Bram Moolenaar80dd3f92017-07-19 12:51:52 +02003643 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 return FAIL;
3645
3646 /*
3647 * There are seven ways to insert lines:
3648 * 0. When in a vertically split window and t_CV isn't set, redraw the
3649 * characters from ScreenLines[].
3650 * 1. Use T_CD (clear to end of display) if it exists and the result of
3651 * the insert is just empty lines
3652 * 2. Use T_CAL (insert multiple lines) if it exists and T_AL is not
3653 * present or line_count > 1. It looks better if we do all the inserts
3654 * at once.
3655 * 3. Use T_CDL (delete multiple lines) if it exists and the result of the
3656 * insert is just empty lines and T_CE is not present or line_count >
3657 * 1.
3658 * 4. Use T_AL (insert line) if it exists.
3659 * 5. Use T_CE (erase line) if it exists and the result of the insert is
3660 * just empty lines.
3661 * 6. Use T_DL (delete line) if it exists and the result of the insert is
3662 * just empty lines.
3663 * 7. Use T_SR (scroll reverse) if it exists and inserting at row 0 and
3664 * the 'da' flag is not set or we have clear line capability.
3665 * 8. redraw the characters from ScreenLines[].
3666 *
3667 * Careful: In a hpterm scroll reverse doesn't work as expected, it moves
3668 * the scrollbar for the window. It does have insert line, use that if it
3669 * exists.
3670 */
3671 result_empty = (row + line_count >= end);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 if (wp != NULL && wp->w_width != Columns && *T_CSV == NUL)
3673 type = USE_REDRAW;
Bram Moolenaar4033c552017-09-16 20:54:51 +02003674 else if (can_clear(T_CD) && result_empty)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675 type = USE_T_CD;
3676 else if (*T_CAL != NUL && (line_count > 1 || *T_AL == NUL))
3677 type = USE_T_CAL;
3678 else if (*T_CDL != NUL && result_empty && (line_count > 1 || !can_ce))
3679 type = USE_T_CDL;
3680 else if (*T_AL != NUL)
3681 type = USE_T_AL;
3682 else if (can_ce && result_empty)
3683 type = USE_T_CE;
3684 else if (*T_DL != NUL && result_empty)
3685 type = USE_T_DL;
3686 else if (*T_SR != NUL && row == 0 && (*T_DA == NUL || can_ce))
3687 type = USE_T_SR;
3688 else
3689 return FAIL;
3690
3691 /*
3692 * For clearing the lines screen_del_lines() is used. This will also take
3693 * care of t_db if necessary.
3694 */
3695 if (type == USE_T_CD || type == USE_T_CDL ||
3696 type == USE_T_CE || type == USE_T_DL)
Bram Moolenaarcfce7172017-08-17 20:31:48 +02003697 return screen_del_lines(off, row, line_count, end, FALSE, 0, wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698
3699 /*
3700 * If text is retained below the screen, first clear or delete as many
3701 * lines at the bottom of the window as are about to be inserted so that
3702 * the deleted lines won't later surface during a screen_del_lines.
3703 */
3704 if (*T_DB)
Bram Moolenaarcfce7172017-08-17 20:31:48 +02003705 screen_del_lines(off, end - line_count, line_count, end, FALSE, 0, wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706
3707#ifdef FEAT_CLIPBOARD
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003708 // Remove a modeless selection when inserting lines halfway the screen
3709 // or not the full width of the screen.
Bram Moolenaar4033c552017-09-16 20:54:51 +02003710 if (off + row > 0 || (wp != NULL && wp->w_width != Columns))
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02003711 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712 else
3713 clip_scroll_selection(-line_count);
3714#endif
3715
Bram Moolenaarb3f74062020-02-26 16:16:53 +01003716#ifdef FEAT_GUI_HAIKU
3717 vim_lock_screen();
3718#endif
3719
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720#ifdef FEAT_GUI
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003721 // Don't update the GUI cursor here, ScreenLines[] is invalid until the
3722 // scrolling is actually carried out.
Bram Moolenaar107abd22016-08-12 14:08:25 +02003723 gui_dont_update_cursor(row + off <= gui.cursor_row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724#endif
3725
Bram Moolenaarbfa42462018-06-16 16:20:52 +02003726 if (wp != NULL && wp->w_wincol != 0 && *T_CSV != NUL && *T_CCS == NUL)
3727 cursor_col = wp->w_wincol;
3728
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003729 if (*T_CCS != NUL) // cursor relative to region
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730 cursor_row = row;
3731 else
3732 cursor_row = row + off;
3733
3734 /*
3735 * Shift LineOffset[] line_count down to reflect the inserted lines.
3736 * Clear the inserted lines in ScreenLines[].
3737 */
3738 row += off;
3739 end += off;
3740 for (i = 0; i < line_count; ++i)
3741 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 if (wp != NULL && wp->w_width != Columns)
3743 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003744 // need to copy part of a line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 j = end - 1 - i;
3746 while ((j -= line_count) >= row)
3747 linecopy(j + line_count, j, wp);
3748 j += line_count;
3749 if (can_clear((char_u *)" "))
Bram Moolenaarcfce7172017-08-17 20:31:48 +02003750 lineclear(LineOffset[j] + wp->w_wincol, wp->w_width,
3751 clear_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 else
3753 lineinvalid(LineOffset[j] + wp->w_wincol, wp->w_width);
3754 LineWraps[j] = FALSE;
3755 }
3756 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757 {
3758 j = end - 1 - i;
3759 temp = LineOffset[j];
3760 while ((j -= line_count) >= row)
3761 {
3762 LineOffset[j + line_count] = LineOffset[j];
3763 LineWraps[j + line_count] = LineWraps[j];
3764 }
3765 LineOffset[j + line_count] = temp;
3766 LineWraps[j + line_count] = FALSE;
3767 if (can_clear((char_u *)" "))
Bram Moolenaarcfce7172017-08-17 20:31:48 +02003768 lineclear(temp, (int)Columns, clear_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 else
3770 lineinvalid(temp, (int)Columns);
3771 }
3772 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773
Bram Moolenaarb3f74062020-02-26 16:16:53 +01003774#ifdef FEAT_GUI_HAIKU
3775 vim_unlock_screen();
3776#endif
3777
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778 screen_stop_highlight();
Bram Moolenaarbfa42462018-06-16 16:20:52 +02003779 windgoto(cursor_row, cursor_col);
Bram Moolenaarcfce7172017-08-17 20:31:48 +02003780 if (clear_attr != 0)
3781 screen_start_highlight(clear_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003783 // redraw the characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784 if (type == USE_REDRAW)
3785 redraw_block(row, end, wp);
Bram Moolenaar4033c552017-09-16 20:54:51 +02003786 else if (type == USE_T_CAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787 {
3788 term_append_lines(line_count);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003789 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 }
3791 else
3792 {
3793 for (i = 0; i < line_count; i++)
3794 {
3795 if (type == USE_T_AL)
3796 {
3797 if (i && cursor_row != 0)
Bram Moolenaarbfa42462018-06-16 16:20:52 +02003798 windgoto(cursor_row, cursor_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799 out_str(T_AL);
3800 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003801 else // type == USE_T_SR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 out_str(T_SR);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003803 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003804 }
3805 }
3806
3807 /*
3808 * With scroll-reverse and 'da' flag set we need to clear the lines that
3809 * have been scrolled down into the region.
3810 */
3811 if (type == USE_T_SR && *T_DA)
3812 {
3813 for (i = 0; i < line_count; ++i)
3814 {
Bram Moolenaarbfa42462018-06-16 16:20:52 +02003815 windgoto(off + i, cursor_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816 out_str(T_CE);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003817 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003818 }
3819 }
3820
3821#ifdef FEAT_GUI
3822 gui_can_update_cursor();
3823 if (gui.in_use)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003824 out_flush(); // always flush after a scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825#endif
3826 return OK;
3827}
3828
3829/*
Bram Moolenaar107abd22016-08-12 14:08:25 +02003830 * Delete lines on the screen and update ScreenLines[].
3831 * "end" is the line after the scrolled part. Normally it is Rows.
3832 * When scrolling region used "off" is the offset from the top for the region.
3833 * "row" and "end" are relative to the start of the region.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 *
3835 * Return OK for success, FAIL if the lines are not deleted.
3836 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003838screen_del_lines(
3839 int off,
3840 int row,
3841 int line_count,
3842 int end,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003843 int force, // even when line_count > p_ttyscroll
3844 int clear_attr, // used for clearing lines
3845 win_T *wp UNUSED) // NULL or window to use width from
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846{
3847 int j;
3848 int i;
3849 unsigned temp;
3850 int cursor_row;
Bram Moolenaarbfa42462018-06-16 16:20:52 +02003851 int cursor_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003852 int cursor_end;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003853 int result_empty; // result is empty until end of region
3854 int can_delete; // deleting line codes can be used
Bram Moolenaar071d4272004-06-13 20:20:40 +00003855 int type;
3856
3857 /*
3858 * FAIL if
3859 * - there is no valid screen
3860 * - the screen has to be redrawn completely
3861 * - the line count is less than one
3862 * - the line count is more than 'ttyscroll'
Bram Moolenaar80dd3f92017-07-19 12:51:52 +02003863 * - redrawing for a callback and there is a modeless selection
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864 */
Bram Moolenaar80dd3f92017-07-19 12:51:52 +02003865 if (!screen_valid(TRUE) || line_count <= 0
3866 || (!force && line_count > p_ttyscroll)
3867#ifdef FEAT_CLIPBOARD
3868 || (clip_star.state != SELECT_CLEARED
3869 && redrawing_for_callback > 0)
3870#endif
3871 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872 return FAIL;
3873
3874 /*
3875 * Check if the rest of the current region will become empty.
3876 */
3877 result_empty = row + line_count >= end;
3878
3879 /*
3880 * We can delete lines only when 'db' flag not set or when 'ce' option
3881 * available.
3882 */
3883 can_delete = (*T_DB == NUL || can_clear(T_CE));
3884
3885 /*
3886 * There are six ways to delete lines:
3887 * 0. When in a vertically split window and t_CV isn't set, redraw the
3888 * characters from ScreenLines[].
3889 * 1. Use T_CD if it exists and the result is empty.
3890 * 2. Use newlines if row == 0 and count == 1 or T_CDL does not exist.
3891 * 3. Use T_CDL (delete multiple lines) if it exists and line_count > 1 or
3892 * none of the other ways work.
3893 * 4. Use T_CE (erase line) if the result is empty.
3894 * 5. Use T_DL (delete line) if it exists.
3895 * 6. redraw the characters from ScreenLines[].
3896 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 if (wp != NULL && wp->w_width != Columns && *T_CSV == NUL)
3898 type = USE_REDRAW;
Bram Moolenaar4033c552017-09-16 20:54:51 +02003899 else if (can_clear(T_CD) && result_empty)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900 type = USE_T_CD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003901 else if (row == 0 && (
3902#ifndef AMIGA
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003903 // On the Amiga, somehow '\n' on the last line doesn't always scroll
3904 // up, so use delete-line command
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905 line_count == 1 ||
3906#endif
3907 *T_CDL == NUL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908 type = USE_NL;
3909 else if (*T_CDL != NUL && line_count > 1 && can_delete)
3910 type = USE_T_CDL;
3911 else if (can_clear(T_CE) && result_empty
Bram Moolenaar4033c552017-09-16 20:54:51 +02003912 && (wp == NULL || wp->w_width == Columns))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913 type = USE_T_CE;
3914 else if (*T_DL != NUL && can_delete)
3915 type = USE_T_DL;
3916 else if (*T_CDL != NUL && can_delete)
3917 type = USE_T_CDL;
3918 else
3919 return FAIL;
3920
3921#ifdef FEAT_CLIPBOARD
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003922 // Remove a modeless selection when deleting lines halfway the screen or
3923 // not the full width of the screen.
Bram Moolenaar4033c552017-09-16 20:54:51 +02003924 if (off + row > 0 || (wp != NULL && wp->w_width != Columns))
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02003925 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926 else
3927 clip_scroll_selection(line_count);
3928#endif
3929
Bram Moolenaar92c461e2020-04-24 22:19:00 +02003930#ifdef FEAT_GUI_HAIKU
3931 vim_lock_screen();
3932#endif
3933
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934#ifdef FEAT_GUI
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003935 // Don't update the GUI cursor here, ScreenLines[] is invalid until the
3936 // scrolling is actually carried out.
Bram Moolenaar107abd22016-08-12 14:08:25 +02003937 gui_dont_update_cursor(gui.cursor_row >= row + off
3938 && gui.cursor_row < end + off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939#endif
3940
Bram Moolenaarbfa42462018-06-16 16:20:52 +02003941 if (wp != NULL && wp->w_wincol != 0 && *T_CSV != NUL && *T_CCS == NUL)
3942 cursor_col = wp->w_wincol;
3943
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003944 if (*T_CCS != NUL) // cursor relative to region
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945 {
3946 cursor_row = row;
3947 cursor_end = end;
3948 }
3949 else
3950 {
3951 cursor_row = row + off;
3952 cursor_end = end + off;
3953 }
3954
3955 /*
3956 * Now shift LineOffset[] line_count up to reflect the deleted lines.
3957 * Clear the inserted lines in ScreenLines[].
3958 */
3959 row += off;
3960 end += off;
3961 for (i = 0; i < line_count; ++i)
3962 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003963 if (wp != NULL && wp->w_width != Columns)
3964 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003965 // need to copy part of a line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 j = row + i;
3967 while ((j += line_count) <= end - 1)
3968 linecopy(j - line_count, j, wp);
3969 j -= line_count;
3970 if (can_clear((char_u *)" "))
Bram Moolenaarcfce7172017-08-17 20:31:48 +02003971 lineclear(LineOffset[j] + wp->w_wincol, wp->w_width,
3972 clear_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003973 else
3974 lineinvalid(LineOffset[j] + wp->w_wincol, wp->w_width);
3975 LineWraps[j] = FALSE;
3976 }
3977 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003979 // whole width, moving the line pointers is faster
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 j = row + i;
3981 temp = LineOffset[j];
3982 while ((j += line_count) <= end - 1)
3983 {
3984 LineOffset[j - line_count] = LineOffset[j];
3985 LineWraps[j - line_count] = LineWraps[j];
3986 }
3987 LineOffset[j - line_count] = temp;
3988 LineWraps[j - line_count] = FALSE;
3989 if (can_clear((char_u *)" "))
Bram Moolenaarcfce7172017-08-17 20:31:48 +02003990 lineclear(temp, (int)Columns, clear_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 else
3992 lineinvalid(temp, (int)Columns);
3993 }
3994 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995
Bram Moolenaarb3f74062020-02-26 16:16:53 +01003996#ifdef FEAT_GUI_HAIKU
3997 vim_unlock_screen();
3998#endif
3999
Bram Moolenaarcfce7172017-08-17 20:31:48 +02004000 if (screen_attr != clear_attr)
4001 screen_stop_highlight();
4002 if (clear_attr != 0)
4003 screen_start_highlight(clear_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004005 // redraw the characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006 if (type == USE_REDRAW)
4007 redraw_block(row, end, wp);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004008 else if (type == USE_T_CD) // delete the lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00004009 {
Bram Moolenaarbfa42462018-06-16 16:20:52 +02004010 windgoto(cursor_row, cursor_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 out_str(T_CD);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004012 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 }
4014 else if (type == USE_T_CDL)
4015 {
Bram Moolenaarbfa42462018-06-16 16:20:52 +02004016 windgoto(cursor_row, cursor_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017 term_delete_lines(line_count);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004018 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019 }
4020 /*
4021 * Deleting lines at top of the screen or scroll region: Just scroll
4022 * the whole screen (scroll region) up by outputting newlines on the
4023 * last line.
4024 */
4025 else if (type == USE_NL)
4026 {
Bram Moolenaarbfa42462018-06-16 16:20:52 +02004027 windgoto(cursor_end - 1, cursor_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028 for (i = line_count; --i >= 0; )
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004029 out_char('\n'); // cursor will remain on same line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 }
4031 else
4032 {
4033 for (i = line_count; --i >= 0; )
4034 {
4035 if (type == USE_T_DL)
4036 {
Bram Moolenaarbfa42462018-06-16 16:20:52 +02004037 windgoto(cursor_row, cursor_col);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004038 out_str(T_DL); // delete a line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004040 else // type == USE_T_CE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041 {
Bram Moolenaarbfa42462018-06-16 16:20:52 +02004042 windgoto(cursor_row + i, cursor_col);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004043 out_str(T_CE); // erase a line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004045 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046 }
4047 }
4048
4049 /*
4050 * If the 'db' flag is set, we need to clear the lines that have been
4051 * scrolled up at the bottom of the region.
4052 */
4053 if (*T_DB && (type == USE_T_DL || type == USE_T_CDL))
4054 {
4055 for (i = line_count; i > 0; --i)
4056 {
Bram Moolenaarbfa42462018-06-16 16:20:52 +02004057 windgoto(cursor_end - i, cursor_col);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004058 out_str(T_CE); // erase a line
4059 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060 }
4061 }
4062
4063#ifdef FEAT_GUI
4064 gui_can_update_cursor();
4065 if (gui.in_use)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004066 out_flush(); // always flush after a scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067#endif
4068
4069 return OK;
4070}
4071
4072/*
Bram Moolenaarcb574f42019-01-25 22:29:57 +01004073 * Return TRUE when postponing displaying the mode message: when not redrawing
4074 * or inside a mapping.
4075 */
4076 int
4077skip_showmode()
4078{
4079 // Call char_avail() only when we are going to show something, because it
4080 // takes a bit of time. redrawing() may also call char_avail_avail().
4081 if (global_busy
4082 || msg_silent != 0
4083 || !redrawing()
4084 || (char_avail() && !KeyTyped))
4085 {
Bram Moolenaar4c25bd72019-04-20 23:38:07 +02004086 redraw_mode = TRUE; // show mode later
Bram Moolenaarcb574f42019-01-25 22:29:57 +01004087 return TRUE;
4088 }
4089 return FALSE;
4090}
4091
4092/*
Bram Moolenaar81226e02018-02-20 21:44:45 +01004093 * Show the current mode and ruler.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094 *
4095 * If clear_cmdline is TRUE, clear the rest of the cmdline.
4096 * If clear_cmdline is FALSE there may be a message there that needs to be
4097 * cleared only if a mode is shown.
Bram Moolenaar4c25bd72019-04-20 23:38:07 +02004098 * If redraw_mode is TRUE show or clear the mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 * Return the length of the message (0 if no message).
4100 */
4101 int
Bram Moolenaar05540972016-01-30 20:31:25 +01004102showmode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103{
4104 int need_clear;
4105 int length = 0;
4106 int do_mode;
4107 int attr;
4108 int nwr_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109 int sub_attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110
Bram Moolenaar7df351e2006-01-23 22:30:28 +00004111 do_mode = ((p_smd && msg_silent == 0)
4112 && ((State & INSERT)
Bram Moolenaar942b4542018-06-17 16:23:34 +02004113 || restart_edit != NUL
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004114 || VIsual_active));
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02004115 if (do_mode || reg_recording != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 {
Bram Moolenaarcb574f42019-01-25 22:29:57 +01004117 if (skip_showmode())
4118 return 0; // show mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00004119
4120 nwr_save = need_wait_return;
4121
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004122 // wait a bit before overwriting an important message
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123 check_for_delay(FALSE);
4124
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004125 // if the cmdline is more than one line high, erase top lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 need_clear = clear_cmdline;
4127 if (clear_cmdline && cmdline_row < Rows - 1)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004128 msg_clr_cmdline(); // will reset clear_cmdline
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004130 // Position on the last line in the window, column 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131 msg_pos_mode();
4132 cursor_off();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004133 attr = HL_ATTR(HLF_CM); // Highlight mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134 if (do_mode)
4135 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004136 msg_puts_attr("--", attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137#if defined(FEAT_XIM)
Bram Moolenaarc236c162008-07-13 17:41:49 +00004138 if (
Bram Moolenaar09092152010-08-08 16:38:42 +02004139# ifdef FEAT_GUI_GTK
Bram Moolenaarc236c162008-07-13 17:41:49 +00004140 preedit_get_status()
Bram Moolenaar09092152010-08-08 16:38:42 +02004141# else
Bram Moolenaarc236c162008-07-13 17:41:49 +00004142 im_get_status()
Bram Moolenaarc236c162008-07-13 17:41:49 +00004143# endif
Bram Moolenaar09092152010-08-08 16:38:42 +02004144 )
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004145# ifdef FEAT_GUI_GTK // most of the time, it's not XIM being used
Bram Moolenaar32526b32019-01-19 17:43:09 +01004146 msg_puts_attr(" IM", attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004147# else
Bram Moolenaar32526b32019-01-19 17:43:09 +01004148 msg_puts_attr(" XIM", attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149# endif
4150#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004151 // CTRL-X in Insert mode
Bram Moolenaarea389e92014-05-28 21:40:52 +02004152 if (edit_submode != NULL && !shortmess(SHM_COMPLETIONMENU))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004154 // These messages can get long, avoid a wrap in a narrow
4155 // window. Prefer showing edit_submode_extra.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156 length = (Rows - msg_row) * Columns - 3;
4157 if (edit_submode_extra != NULL)
4158 length -= vim_strsize(edit_submode_extra);
4159 if (length > 0)
4160 {
4161 if (edit_submode_pre != NULL)
4162 length -= vim_strsize(edit_submode_pre);
4163 if (length - vim_strsize(edit_submode) > 0)
4164 {
4165 if (edit_submode_pre != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004166 msg_puts_attr((char *)edit_submode_pre, attr);
4167 msg_puts_attr((char *)edit_submode, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168 }
4169 if (edit_submode_extra != NULL)
4170 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004171 msg_puts_attr(" ", attr); // add a space in between
Bram Moolenaar071d4272004-06-13 20:20:40 +00004172 if ((int)edit_submode_highl < (int)HLF_COUNT)
Bram Moolenaar8820b482017-03-16 17:23:31 +01004173 sub_attr = HL_ATTR(edit_submode_highl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174 else
4175 sub_attr = attr;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004176 msg_puts_attr((char *)edit_submode_extra, sub_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177 }
4178 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179 }
4180 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 if (State & VREPLACE_FLAG)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004183 msg_puts_attr(_(" VREPLACE"), attr);
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02004184 else if (State & REPLACE_FLAG)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004185 msg_puts_attr(_(" REPLACE"), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186 else if (State & INSERT)
4187 {
4188#ifdef FEAT_RIGHTLEFT
4189 if (p_ri)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004190 msg_puts_attr(_(" REVERSE"), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004191#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01004192 msg_puts_attr(_(" INSERT"), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193 }
Bram Moolenaar957cf672020-11-12 14:21:06 +01004194 else if (restart_edit == 'I' || restart_edit == 'i' ||
4195 restart_edit == 'a' || restart_edit == 'A')
Bram Moolenaar32526b32019-01-19 17:43:09 +01004196 msg_puts_attr(_(" (insert)"), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197 else if (restart_edit == 'R')
Bram Moolenaar32526b32019-01-19 17:43:09 +01004198 msg_puts_attr(_(" (replace)"), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 else if (restart_edit == 'V')
Bram Moolenaar32526b32019-01-19 17:43:09 +01004200 msg_puts_attr(_(" (vreplace)"), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201#ifdef FEAT_RIGHTLEFT
4202 if (p_hkmap)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004203 msg_puts_attr(_(" Hebrew"), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204#endif
4205#ifdef FEAT_KEYMAP
4206 if (State & LANGMAP)
4207 {
4208# ifdef FEAT_ARABIC
4209 if (curwin->w_p_arab)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004210 msg_puts_attr(_(" Arabic"), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211 else
4212# endif
Bram Moolenaar73ac0c42016-07-24 16:17:59 +02004213 if (get_keymap_str(curwin, (char_u *)" (%s)",
4214 NameBuff, MAXPATHL))
Bram Moolenaar32526b32019-01-19 17:43:09 +01004215 msg_puts_attr((char *)NameBuff, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216 }
4217#endif
4218 if ((State & INSERT) && p_paste)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004219 msg_puts_attr(_(" (paste)"), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004220
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 if (VIsual_active)
4222 {
4223 char *p;
4224
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004225 // Don't concatenate separate words to avoid translation
4226 // problems.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004227 switch ((VIsual_select ? 4 : 0)
4228 + (VIsual_mode == Ctrl_V) * 2
4229 + (VIsual_mode == 'V'))
4230 {
4231 case 0: p = N_(" VISUAL"); break;
4232 case 1: p = N_(" VISUAL LINE"); break;
4233 case 2: p = N_(" VISUAL BLOCK"); break;
4234 case 4: p = N_(" SELECT"); break;
4235 case 5: p = N_(" SELECT LINE"); break;
4236 default: p = N_(" SELECT BLOCK"); break;
4237 }
Bram Moolenaar32526b32019-01-19 17:43:09 +01004238 msg_puts_attr(_(p), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 }
Bram Moolenaar32526b32019-01-19 17:43:09 +01004240 msg_puts_attr(" --", attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004242
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 need_clear = TRUE;
4244 }
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02004245 if (reg_recording != 0
Bram Moolenaare2c453d2019-08-21 14:37:09 +02004246 && edit_submode == NULL) // otherwise it gets too long
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247 {
Bram Moolenaara0ed84a2015-11-19 17:56:13 +01004248 recording_mode(attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249 need_clear = TRUE;
4250 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004251
4252 mode_displayed = TRUE;
Bram Moolenaar4c25bd72019-04-20 23:38:07 +02004253 if (need_clear || clear_cmdline || redraw_mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254 msg_clr_eos();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004255 msg_didout = FALSE; // overwrite this message
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256 length = msg_col;
4257 msg_col = 0;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004258 need_wait_return = nwr_save; // never ask for hit-return for this
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259 }
4260 else if (clear_cmdline && msg_silent == 0)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004261 // Clear the whole command line. Will reset "clear_cmdline".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262 msg_clr_cmdline();
Bram Moolenaar4c25bd72019-04-20 23:38:07 +02004263 else if (redraw_mode)
4264 {
4265 msg_pos_mode();
4266 msg_clr_eos();
4267 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268
4269#ifdef FEAT_CMDL_INFO
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004270 // In Visual mode the size of the selected area must be redrawn.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004271 if (VIsual_active)
4272 clear_showcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004274 // If the last window has no status line, the ruler is after the mode
4275 // message and must be redrawn
Bram Moolenaar4033c552017-09-16 20:54:51 +02004276 if (redrawing() && lastwin->w_status_height == 0)
Bram Moolenaar491ac282018-06-17 14:47:55 +02004277 win_redr_ruler(lastwin, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004278#endif
4279 redraw_cmdline = FALSE;
Bram Moolenaar4c25bd72019-04-20 23:38:07 +02004280 redraw_mode = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281 clear_cmdline = FALSE;
4282
4283 return length;
4284}
4285
4286/*
4287 * Position for a mode message.
4288 */
4289 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01004290msg_pos_mode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291{
4292 msg_col = 0;
4293 msg_row = Rows - 1;
4294}
4295
4296/*
4297 * Delete mode message. Used when ESC is typed which is expected to end
4298 * Insert mode (but Insert mode didn't end yet!).
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004299 * Caller should check "mode_displayed".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300 */
4301 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004302unshowmode(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303{
4304 /*
Bram Moolenaare4ebd292010-01-19 17:40:46 +01004305 * Don't delete it right now, when not redrawing or inside a mapping.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306 */
4307 if (!redrawing() || (!force && char_avail() && !KeyTyped))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004308 redraw_cmdline = TRUE; // delete mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00004309 else
Bram Moolenaarfd773e92016-04-02 19:39:16 +02004310 clearmode();
4311}
4312
4313/*
4314 * Clear the mode message.
4315 */
4316 void
Bram Moolenaarcf089462016-06-12 21:18:43 +02004317clearmode(void)
Bram Moolenaarfd773e92016-04-02 19:39:16 +02004318{
Bram Moolenaar2abad542018-05-19 14:43:45 +02004319 int save_msg_row = msg_row;
4320 int save_msg_col = msg_col;
4321
Bram Moolenaarfd773e92016-04-02 19:39:16 +02004322 msg_pos_mode();
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02004323 if (reg_recording != 0)
Bram Moolenaar8820b482017-03-16 17:23:31 +01004324 recording_mode(HL_ATTR(HLF_CM));
Bram Moolenaarfd773e92016-04-02 19:39:16 +02004325 msg_clr_eos();
Bram Moolenaar2abad542018-05-19 14:43:45 +02004326
4327 msg_col = save_msg_col;
4328 msg_row = save_msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329}
4330
Bram Moolenaara0ed84a2015-11-19 17:56:13 +01004331 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01004332recording_mode(int attr)
Bram Moolenaara0ed84a2015-11-19 17:56:13 +01004333{
Bram Moolenaar32526b32019-01-19 17:43:09 +01004334 msg_puts_attr(_("recording"), attr);
Bram Moolenaara0ed84a2015-11-19 17:56:13 +01004335 if (!shortmess(SHM_RECORDING))
4336 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004337 char s[4];
4338
4339 sprintf(s, " @%c", reg_recording);
4340 msg_puts_attr(s, attr);
Bram Moolenaara0ed84a2015-11-19 17:56:13 +01004341 }
4342}
4343
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004344/*
4345 * Draw the tab pages line at the top of the Vim window.
4346 */
Bram Moolenaare12bab32019-01-08 22:02:56 +01004347 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004348draw_tabline(void)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004349{
4350 int tabcount = 0;
4351 tabpage_T *tp;
4352 int tabwidth;
4353 int col = 0;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00004354 int scol = 0;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004355 int attr;
4356 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004357 win_T *cwp;
4358 int wincount;
4359 int modified;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004360 int c;
4361 int len;
Bram Moolenaar8820b482017-03-16 17:23:31 +01004362 int attr_sel = HL_ATTR(HLF_TPS);
4363 int attr_nosel = HL_ATTR(HLF_TP);
4364 int attr_fill = HL_ATTR(HLF_TPF);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00004365 char_u *p;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004366 int room;
4367 int use_sep_chars = (t_colors < 8
4368#ifdef FEAT_GUI
4369 && !gui.in_use
4370#endif
Bram Moolenaar61be73b2016-04-29 22:59:22 +02004371#ifdef FEAT_TERMGUICOLORS
4372 && !p_tgc
Bram Moolenaar8a633e32016-04-21 21:10:14 +02004373#endif
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004374 );
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004375
Bram Moolenaarc695cec2017-01-08 20:00:04 +01004376 if (ScreenLines == NULL)
4377 return;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00004378 redraw_tabline = FALSE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004379
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004380#ifdef FEAT_GUI_TABLINE
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004381 // Take care of a GUI tabline.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004382 if (gui_use_tabline())
4383 {
4384 gui_update_tabline();
4385 return;
4386 }
4387#endif
4388
4389 if (tabline_height() < 1)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004390 return;
4391
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004392#if defined(FEAT_STL_OPT)
Bram Moolenaarca57ab52019-04-13 14:53:16 +02004393 clear_TabPageIdxs();
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004394
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004395 // Use the 'tabline' option if it's set.
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004396 if (*p_tal != NUL)
4397 {
Bram Moolenaarf73d3bc2016-04-11 21:55:15 +02004398 int saved_did_emsg = did_emsg;
Bram Moolenaar238a5642006-02-21 22:12:05 +00004399
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004400 // Check for an error. If there is one we would loop in redrawing the
4401 // screen. Avoid that by making 'tabline' empty.
Bram Moolenaarf73d3bc2016-04-11 21:55:15 +02004402 did_emsg = FALSE;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004403 win_redr_custom(NULL, FALSE);
Bram Moolenaarf73d3bc2016-04-11 21:55:15 +02004404 if (did_emsg)
Bram Moolenaar238a5642006-02-21 22:12:05 +00004405 set_string_option_direct((char_u *)"tabline", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00004406 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaarf73d3bc2016-04-11 21:55:15 +02004407 did_emsg |= saved_did_emsg;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004408 }
Bram Moolenaar238a5642006-02-21 22:12:05 +00004409 else
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004410#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004411 {
Bram Moolenaar29323592016-07-24 22:04:11 +02004412 FOR_ALL_TABPAGES(tp)
Bram Moolenaar238a5642006-02-21 22:12:05 +00004413 ++tabcount;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004414
Bram Moolenaar238a5642006-02-21 22:12:05 +00004415 tabwidth = (Columns - 1 + tabcount / 2) / tabcount;
4416 if (tabwidth < 6)
4417 tabwidth = 6;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004418
Bram Moolenaar238a5642006-02-21 22:12:05 +00004419 attr = attr_nosel;
4420 tabcount = 0;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00004421 for (tp = first_tabpage; tp != NULL && col < Columns - 4;
4422 tp = tp->tp_next)
Bram Moolenaarf740b292006-02-16 22:11:02 +00004423 {
Bram Moolenaar238a5642006-02-21 22:12:05 +00004424 scol = col;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004425
Bram Moolenaar238a5642006-02-21 22:12:05 +00004426 if (tp->tp_topframe == topframe)
4427 attr = attr_sel;
4428 if (use_sep_chars && col > 0)
4429 screen_putchar('|', 0, col++, attr);
4430
4431 if (tp->tp_topframe != topframe)
4432 attr = attr_nosel;
4433
4434 screen_putchar(' ', 0, col++, attr);
4435
4436 if (tp == curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00004437 {
Bram Moolenaar238a5642006-02-21 22:12:05 +00004438 cwp = curwin;
4439 wp = firstwin;
4440 }
4441 else
4442 {
4443 cwp = tp->tp_curwin;
4444 wp = tp->tp_firstwin;
4445 }
4446
4447 modified = FALSE;
4448 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount)
4449 if (bufIsChanged(wp->w_buffer))
4450 modified = TRUE;
4451 if (modified || wincount > 1)
4452 {
4453 if (wincount > 1)
4454 {
4455 vim_snprintf((char *)NameBuff, MAXPATHL, "%d", wincount);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004456 len = (int)STRLEN(NameBuff);
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00004457 if (col + len >= Columns - 3)
4458 break;
Bram Moolenaar238a5642006-02-21 22:12:05 +00004459 screen_puts_len(NameBuff, len, 0, col,
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004460#if defined(FEAT_SYN_HL)
Bram Moolenaar8820b482017-03-16 17:23:31 +01004461 hl_combine_attr(attr, HL_ATTR(HLF_T))
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004462#else
Bram Moolenaare0f14822014-08-06 13:20:56 +02004463 attr
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004464#endif
Bram Moolenaar238a5642006-02-21 22:12:05 +00004465 );
4466 col += len;
4467 }
4468 if (modified)
4469 screen_puts_len((char_u *)"+", 1, 0, col++, attr);
4470 screen_putchar(' ', 0, col++, attr);
4471 }
4472
4473 room = scol - col + tabwidth - 1;
4474 if (room > 0)
4475 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004476 // Get buffer name in NameBuff[]
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004477 get_trans_bufname(cwp->w_buffer);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004478 shorten_dir(NameBuff);
Bram Moolenaar238a5642006-02-21 22:12:05 +00004479 len = vim_strsize(NameBuff);
4480 p = NameBuff;
Bram Moolenaar238a5642006-02-21 22:12:05 +00004481 if (has_mbyte)
4482 while (len > room)
4483 {
4484 len -= ptr2cells(p);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004485 MB_PTR_ADV(p);
Bram Moolenaar238a5642006-02-21 22:12:05 +00004486 }
Bram Moolenaara12a1612019-01-24 16:39:02 +01004487 else if (len > room)
Bram Moolenaar238a5642006-02-21 22:12:05 +00004488 {
4489 p += len - room;
4490 len = room;
4491 }
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00004492 if (len > Columns - col - 1)
4493 len = Columns - col - 1;
Bram Moolenaar238a5642006-02-21 22:12:05 +00004494
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004495 screen_puts_len(p, (int)STRLEN(p), 0, col, attr);
Bram Moolenaarf740b292006-02-16 22:11:02 +00004496 col += len;
4497 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00004498 screen_putchar(' ', 0, col++, attr);
Bram Moolenaar238a5642006-02-21 22:12:05 +00004499
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004500 // Store the tab page number in TabPageIdxs[], so that
4501 // jump_to_mouse() knows where each one is.
Bram Moolenaar238a5642006-02-21 22:12:05 +00004502 ++tabcount;
4503 while (scol < col)
4504 TabPageIdxs[scol++] = tabcount;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004505 }
4506
Bram Moolenaar238a5642006-02-21 22:12:05 +00004507 if (use_sep_chars)
4508 c = '_';
4509 else
4510 c = ' ';
4511 screen_fill(0, 1, col, (int)Columns, c, c, attr_fill);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004512
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004513 // Put an "X" for closing the current tab if there are several.
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004514 if (first_tabpage->tp_next != NULL)
4515 {
4516 screen_putchar('X', 0, (int)Columns - 1, attr_nosel);
4517 TabPageIdxs[Columns - 1] = -999;
4518 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004519 }
Bram Moolenaarb21e5842006-04-16 18:30:08 +00004520
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004521 // Reset the flag here again, in case evaluating 'tabline' causes it to be
4522 // set.
Bram Moolenaarb21e5842006-04-16 18:30:08 +00004523 redraw_tabline = FALSE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004524}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004525
4526/*
4527 * Get buffer name for "buf" into NameBuff[].
4528 * Takes care of special buffer names and translates special characters.
4529 */
4530 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004531get_trans_bufname(buf_T *buf)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004532{
4533 if (buf_spname(buf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02004534 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004535 else
4536 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
4537 trans_characters(NameBuff, MAXPATHL);
4538}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004539
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540/*
4541 * Get the character to use in a status line. Get its attributes in "*attr".
4542 */
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02004543 int
Bram Moolenaar3633cf52017-07-31 22:29:35 +02004544fillchar_status(int *attr, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545{
4546 int fill;
Bram Moolenaar3633cf52017-07-31 22:29:35 +02004547
4548#ifdef FEAT_TERMINAL
4549 if (bt_terminal(wp->w_buffer))
4550 {
Bram Moolenaar3633cf52017-07-31 22:29:35 +02004551 if (wp == curwin)
Bram Moolenaar05fbfdc2017-08-14 22:35:08 +02004552 {
4553 *attr = HL_ATTR(HLF_ST);
Bram Moolenaar3633cf52017-07-31 22:29:35 +02004554 fill = fill_stl;
Bram Moolenaar05fbfdc2017-08-14 22:35:08 +02004555 }
Bram Moolenaar3633cf52017-07-31 22:29:35 +02004556 else
Bram Moolenaar05fbfdc2017-08-14 22:35:08 +02004557 {
4558 *attr = HL_ATTR(HLF_STNC);
Bram Moolenaar3633cf52017-07-31 22:29:35 +02004559 fill = fill_stlnc;
Bram Moolenaar05fbfdc2017-08-14 22:35:08 +02004560 }
Bram Moolenaar3633cf52017-07-31 22:29:35 +02004561 }
4562 else
4563#endif
4564 if (wp == curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01004566 *attr = HL_ATTR(HLF_S);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567 fill = fill_stl;
4568 }
4569 else
4570 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01004571 *attr = HL_ATTR(HLF_SNC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572 fill = fill_stlnc;
4573 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004574 // Use fill when there is highlighting, and highlighting of current
4575 // window differs, or the fillchars differ, or this is not the
4576 // current window
Bram Moolenaar8820b482017-03-16 17:23:31 +01004577 if (*attr != 0 && ((HL_ATTR(HLF_S) != HL_ATTR(HLF_SNC)
Bram Moolenaar3633cf52017-07-31 22:29:35 +02004578 || wp != curwin || ONE_WINDOW)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579 || (fill_stl != fill_stlnc)))
4580 return fill;
Bram Moolenaar3633cf52017-07-31 22:29:35 +02004581 if (wp == curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582 return '^';
4583 return '=';
4584}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586/*
4587 * Get the character to use in a separator between vertically split windows.
4588 * Get its attributes in "*attr".
4589 */
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02004590 int
Bram Moolenaar05540972016-01-30 20:31:25 +01004591fillchar_vsep(int *attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592{
Bram Moolenaar8820b482017-03-16 17:23:31 +01004593 *attr = HL_ATTR(HLF_C);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 if (*attr == 0 && fill_vert == ' ')
4595 return '|';
4596 else
4597 return fill_vert;
4598}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599
4600/*
4601 * Return TRUE if redrawing should currently be done.
4602 */
4603 int
Bram Moolenaar05540972016-01-30 20:31:25 +01004604redrawing(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605{
Bram Moolenaareb992cb2017-03-09 18:20:16 +01004606#ifdef FEAT_EVAL
4607 if (disable_redraw_for_testing)
4608 return 0;
4609 else
4610#endif
Bram Moolenaared5a9d62018-09-06 13:14:43 +02004611 return ((!RedrawingDisabled
4612#ifdef FEAT_EVAL
4613 || ignore_redraw_flag_for_testing
4614#endif
4615 ) && !(p_lz && char_avail() && !KeyTyped && !do_redraw));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616}
4617
4618/*
4619 * Return TRUE if printing messages should currently be done.
4620 */
4621 int
Bram Moolenaar05540972016-01-30 20:31:25 +01004622messaging(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623{
4624 return (!(p_lz && char_avail() && !KeyTyped));
4625}
4626
Bram Moolenaare677df82019-09-02 22:31:11 +02004627/*
4628 * Compute columns for ruler and shown command. 'sc_col' is also used to
4629 * decide what the maximum length of a message on the status line can be.
4630 * If there is a status line for the last window, 'sc_col' is independent
4631 * of 'ru_col'.
4632 */
4633
4634#define COL_RULER 17 // columns needed by standard ruler
4635
4636 void
4637comp_col(void)
4638{
4639#if defined(FEAT_CMDL_INFO)
4640 int last_has_status = (p_ls == 2 || (p_ls == 1 && !ONE_WINDOW));
4641
4642 sc_col = 0;
4643 ru_col = 0;
4644 if (p_ru)
4645 {
4646# ifdef FEAT_STL_OPT
4647 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1;
4648# else
4649 ru_col = COL_RULER + 1;
4650# endif
4651 // no last status line, adjust sc_col
4652 if (!last_has_status)
4653 sc_col = ru_col;
4654 }
4655 if (p_sc)
4656 {
4657 sc_col += SHOWCMD_COLS;
4658 if (!p_ru || last_has_status) // no need for separating space
4659 ++sc_col;
4660 }
4661 sc_col = Columns - sc_col;
4662 ru_col = Columns - ru_col;
4663 if (sc_col <= 0) // screen too narrow, will become a mess
4664 sc_col = 1;
4665 if (ru_col <= 0)
4666 ru_col = 1;
4667#else
4668 sc_col = Columns;
4669 ru_col = Columns;
4670#endif
4671#ifdef FEAT_EVAL
4672 set_vim_var_nr(VV_ECHOSPACE, sc_col - 1);
4673#endif
4674}
4675
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004676#if defined(FEAT_LINEBREAK) || defined(PROTO)
4677/*
Bram Moolenaar64486672010-05-16 15:46:46 +02004678 * Return the width of the 'number' and 'relativenumber' column.
4679 * Caller may need to check if 'number' or 'relativenumber' is set.
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004680 * Otherwise it depends on 'numberwidth' and the line count.
4681 */
4682 int
Bram Moolenaar05540972016-01-30 20:31:25 +01004683number_width(win_T *wp)
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004684{
4685 int n;
4686 linenr_T lnum;
4687
Bram Moolenaar5ebc09b2013-06-04 22:13:50 +02004688 if (wp->w_p_rnu && !wp->w_p_nu)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004689 // cursor line shows "0"
Bram Moolenaar5ebc09b2013-06-04 22:13:50 +02004690 lnum = wp->w_height;
4691 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004692 // cursor line shows absolute line number
Bram Moolenaar5ebc09b2013-06-04 22:13:50 +02004693 lnum = wp->w_buffer->b_ml.ml_line_count;
Bram Moolenaar64486672010-05-16 15:46:46 +02004694
Bram Moolenaar6b314672015-03-20 15:42:10 +01004695 if (lnum == wp->w_nrwidth_line_count && wp->w_nuw_cached == wp->w_p_nuw)
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004696 return wp->w_nrwidth_width;
4697 wp->w_nrwidth_line_count = lnum;
4698
4699 n = 0;
4700 do
4701 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004702 lnum /= 10;
4703 ++n;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004704 } while (lnum > 0);
4705
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004706 // 'numberwidth' gives the minimal width plus one
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004707 if (n < wp->w_p_nuw - 1)
4708 n = wp->w_p_nuw - 1;
4709
Bram Moolenaare4b407f2019-07-04 11:59:28 +02004710# ifdef FEAT_SIGNS
4711 // If 'signcolumn' is set to 'number' and there is a sign to display, then
4712 // the minimal width for the number column is 2.
Bram Moolenaar4eb7dae2019-11-12 22:33:45 +01004713 if (n < 2 && get_first_valid_sign(wp) != NULL
Bram Moolenaare4b407f2019-07-04 11:59:28 +02004714 && (*wp->w_p_scl == 'n' && *(wp->w_p_scl + 1) == 'u'))
4715 n = 2;
4716# endif
4717
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004718 wp->w_nrwidth_width = n;
Bram Moolenaar6b314672015-03-20 15:42:10 +01004719 wp->w_nuw_cached = wp->w_p_nuw;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00004720 return n;
4721}
4722#endif
Bram Moolenaar9750bb12012-12-05 16:10:42 +01004723
Bram Moolenaar113e1072019-01-20 15:30:40 +01004724#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar9750bb12012-12-05 16:10:42 +01004725/*
4726 * Return the current cursor column. This is the actual position on the
4727 * screen. First column is 0.
4728 */
4729 int
Bram Moolenaar05540972016-01-30 20:31:25 +01004730screen_screencol(void)
Bram Moolenaar9750bb12012-12-05 16:10:42 +01004731{
4732 return screen_cur_col;
4733}
4734
4735/*
4736 * Return the current cursor row. This is the actual position on the screen.
4737 * First row is 0.
4738 */
4739 int
Bram Moolenaar05540972016-01-30 20:31:25 +01004740screen_screenrow(void)
Bram Moolenaar9750bb12012-12-05 16:10:42 +01004741{
4742 return screen_cur_row;
4743}
Bram Moolenaar113e1072019-01-20 15:30:40 +01004744#endif
Bram Moolenaare677df82019-09-02 22:31:11 +02004745
4746/*
4747 * Handle setting 'listchars' or 'fillchars'.
Bram Moolenaareed9d462021-02-15 20:38:25 +01004748 * Assume monocell characters.
Bram Moolenaare677df82019-09-02 22:31:11 +02004749 * Returns error message, NULL if it's OK.
4750 */
4751 char *
Bram Moolenaareed9d462021-02-15 20:38:25 +01004752set_chars_option(win_T *wp, char_u **varp)
Bram Moolenaare677df82019-09-02 22:31:11 +02004753{
4754 int round, i, len, entries;
4755 char_u *p, *s;
4756 int c1 = 0, c2 = 0, c3 = 0;
4757 struct charstab
4758 {
4759 int *cp;
4760 char *name;
4761 };
4762 static struct charstab filltab[] =
4763 {
4764 {&fill_stl, "stl"},
4765 {&fill_stlnc, "stlnc"},
4766 {&fill_vert, "vert"},
4767 {&fill_fold, "fold"},
4768 {&fill_diff, "diff"},
Bram Moolenaara98f8a22021-02-13 18:24:23 +01004769 {&fill_eob, "eob"},
Bram Moolenaare677df82019-09-02 22:31:11 +02004770 };
Bram Moolenaar333bd562021-02-16 22:22:13 +01004771 static lcs_chars_T lcs_chars;
Bram Moolenaareed9d462021-02-15 20:38:25 +01004772 struct charstab lcstab[] =
Bram Moolenaare677df82019-09-02 22:31:11 +02004773 {
Bram Moolenaar333bd562021-02-16 22:22:13 +01004774 {&lcs_chars.eol, "eol"},
4775 {&lcs_chars.ext, "extends"},
4776 {&lcs_chars.nbsp, "nbsp"},
4777 {&lcs_chars.prec, "precedes"},
4778 {&lcs_chars.space, "space"},
4779 {&lcs_chars.tab2, "tab"},
4780 {&lcs_chars.trail, "trail"},
4781 {&lcs_chars.lead, "lead"},
Bram Moolenaare677df82019-09-02 22:31:11 +02004782#ifdef FEAT_CONCEAL
Bram Moolenaar333bd562021-02-16 22:22:13 +01004783 {&lcs_chars.conceal, "conceal"},
Bram Moolenaare677df82019-09-02 22:31:11 +02004784#else
Bram Moolenaar333bd562021-02-16 22:22:13 +01004785 {NULL, "conceal"},
Bram Moolenaare677df82019-09-02 22:31:11 +02004786#endif
4787 };
4788 struct charstab *tab;
4789
Bram Moolenaareed9d462021-02-15 20:38:25 +01004790 if (varp == &p_lcs || varp == &wp->w_p_lcs)
Bram Moolenaare677df82019-09-02 22:31:11 +02004791 {
4792 tab = lcstab;
Bram Moolenaar333bd562021-02-16 22:22:13 +01004793 CLEAR_FIELD(lcs_chars);
Bram Moolenaare677df82019-09-02 22:31:11 +02004794 entries = sizeof(lcstab) / sizeof(struct charstab);
Bram Moolenaareed9d462021-02-15 20:38:25 +01004795 if (varp == &wp->w_p_lcs && wp->w_p_lcs[0] == NUL)
4796 varp = &p_lcs;
Bram Moolenaare677df82019-09-02 22:31:11 +02004797 }
4798 else
4799 {
4800 tab = filltab;
4801 entries = sizeof(filltab) / sizeof(struct charstab);
4802 }
4803
4804 // first round: check for valid value, second round: assign values
4805 for (round = 0; round <= 1; ++round)
4806 {
4807 if (round > 0)
4808 {
4809 // After checking that the value is valid: set defaults: space for
4810 // 'fillchars', NUL for 'listchars'
4811 for (i = 0; i < entries; ++i)
4812 if (tab[i].cp != NULL)
Bram Moolenaareed9d462021-02-15 20:38:25 +01004813 *(tab[i].cp) =
4814 ((varp == &p_lcs || varp == &wp->w_p_lcs) ? NUL : ' ');
Bram Moolenaare677df82019-09-02 22:31:11 +02004815
Bram Moolenaareed9d462021-02-15 20:38:25 +01004816 if (varp == &p_lcs || varp == &wp->w_p_lcs)
Bram Moolenaare677df82019-09-02 22:31:11 +02004817 {
Bram Moolenaar333bd562021-02-16 22:22:13 +01004818 lcs_chars.tab1 = NUL;
4819 lcs_chars.tab3 = NUL;
Bram Moolenaare677df82019-09-02 22:31:11 +02004820 }
4821 else
Bram Moolenaara98f8a22021-02-13 18:24:23 +01004822 {
Bram Moolenaare677df82019-09-02 22:31:11 +02004823 fill_diff = '-';
Bram Moolenaara98f8a22021-02-13 18:24:23 +01004824 fill_eob = '~';
4825 }
Bram Moolenaare677df82019-09-02 22:31:11 +02004826 }
4827 p = *varp;
4828 while (*p)
4829 {
4830 for (i = 0; i < entries; ++i)
4831 {
4832 len = (int)STRLEN(tab[i].name);
4833 if (STRNCMP(p, tab[i].name, len) == 0
4834 && p[len] == ':'
4835 && p[len + 1] != NUL)
4836 {
4837 c2 = c3 = 0;
4838 s = p + len + 1;
4839 c1 = mb_ptr2char_adv(&s);
4840 if (mb_char2cells(c1) > 1)
4841 continue;
Bram Moolenaar333bd562021-02-16 22:22:13 +01004842 if (tab[i].cp == &lcs_chars.tab2)
Bram Moolenaare677df82019-09-02 22:31:11 +02004843 {
4844 if (*s == NUL)
4845 continue;
4846 c2 = mb_ptr2char_adv(&s);
4847 if (mb_char2cells(c2) > 1)
4848 continue;
4849 if (!(*s == ',' || *s == NUL))
4850 {
4851 c3 = mb_ptr2char_adv(&s);
4852 if (mb_char2cells(c3) > 1)
4853 continue;
4854 }
4855 }
4856
4857 if (*s == ',' || *s == NUL)
4858 {
4859 if (round)
4860 {
Bram Moolenaar333bd562021-02-16 22:22:13 +01004861 if (tab[i].cp == &lcs_chars.tab2)
Bram Moolenaare677df82019-09-02 22:31:11 +02004862 {
Bram Moolenaar333bd562021-02-16 22:22:13 +01004863 lcs_chars.tab1 = c1;
4864 lcs_chars.tab2 = c2;
4865 lcs_chars.tab3 = c3;
Bram Moolenaare677df82019-09-02 22:31:11 +02004866 }
4867 else if (tab[i].cp != NULL)
4868 *(tab[i].cp) = c1;
4869
4870 }
4871 p = s;
4872 break;
4873 }
4874 }
4875 }
4876
4877 if (i == entries)
4878 return e_invarg;
4879 if (*p == ',')
4880 ++p;
4881 }
4882 }
Bram Moolenaar333bd562021-02-16 22:22:13 +01004883 if (tab == lcstab)
4884 wp->w_lcs_chars = lcs_chars;
Bram Moolenaare677df82019-09-02 22:31:11 +02004885
4886 return NULL; // no error
4887}
Bram Moolenaar017ba072019-09-14 21:01:23 +02004888