blob: bb7a8742b2ca335033efce5f338d7cff6b646aa0 [file] [log] [blame]
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +02001/* vi:set ts=8 sts=4 sw=4 noet:
2 *
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/*
11 * tabpanel.c:
12 */
13
14#include "vim.h"
15
16#if defined(FEAT_TABPANEL) || defined(PROTO)
17
18static void do_by_tplmode(int tplmode, int col_start, int col_end,
Hirohito Higashic659e4a2025-05-16 19:34:34 +020019 int *pcurtab_row, int *ptabpagenr);
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +020020
21// set pcurtab_row. don't redraw tabpanel.
22#define TPLMODE_GET_CURTAB_ROW 0
23// set ptabpagenr. don't redraw tabpanel.
24#define TPLMODE_GET_TABPAGENR 1
25// redraw tabpanel.
26#define TPLMODE_REDRAW 2
27
28#define TPL_FILLCHAR ' '
29
30#define VERT_LEN 1
31
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +020032// tpl_align's values
33#define ALIGN_LEFT 0
34#define ALIGN_RIGHT 1
35
36static char_u *opt_name = (char_u *)"tabpanel";
37static int opt_scope = OPT_LOCAL;
38static int tpl_align = ALIGN_LEFT;
39static int tpl_columns = 20;
Hirohito Higashic659e4a2025-05-16 19:34:34 +020040static int tpl_is_vert = FALSE;
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +020041
42typedef struct {
43 win_T *wp;
44 win_T *cwp;
45 char_u *user_defined;
46 int maxrow;
47 int offsetrow;
48 int *prow;
49 int *pcol;
50 int attr;
51 int col_start;
52 int col_end;
53} tabpanel_T;
54
55 int
56tabpanelopt_changed(void)
57{
58 char_u *p;
59 int new_align = ALIGN_LEFT;
60 int new_columns = 20;
Hirohito Higashic659e4a2025-05-16 19:34:34 +020061 int new_is_vert = FALSE;
Naruhiko Nishino2a1e2532025-05-17 16:19:24 +020062 int do_equal = 0;
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +020063
64 p = p_tplo;
65 while (*p != NUL)
66 {
Hirohito Higashi598bbb12025-05-22 22:41:05 +020067 if (STRNCMP(p, "align:", 6) == 0)
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +020068 {
Hirohito Higashi598bbb12025-05-22 22:41:05 +020069 p += 6;
70 if (STRNCMP(p, "left", 4) == 0)
71 {
72 p += 4;
73 new_align = ALIGN_LEFT;
74 }
75 else if (STRNCMP(p, "right", 5) == 0)
76 {
77 p += 5;
78 new_align = ALIGN_RIGHT;
79 }
80 else
81 return FAIL;
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +020082 }
83 else if (STRNCMP(p, "columns:", 8) == 0 && VIM_ISDIGIT(p[8]))
84 {
85 p += 8;
86 new_columns = getdigits(&p);
87 }
88 else if (STRNCMP(p, "vert", 4) == 0)
89 {
90 p += 4;
Hirohito Higashic659e4a2025-05-16 19:34:34 +020091 new_is_vert = TRUE;
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +020092 }
93
94 if (*p != ',' && *p != NUL)
95 return FAIL;
96 if (*p == ',')
97 ++p;
98 }
99
Naruhiko Nishino2a1e2532025-05-17 16:19:24 +0200100 // Whether all the windows are automatically made the same size
101 // when tabpanel size is changed.
102 do_equal = p_ea && tpl_columns != new_columns;
103
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200104 tpl_align = new_align;
105 tpl_columns = new_columns;
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200106 tpl_is_vert = new_is_vert;
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200107
Naruhiko Nishino2a1e2532025-05-17 16:19:24 +0200108 shell_new_columns();
109 redraw_tabpanel = TRUE;
110
111 if (do_equal)
112 win_equal(curwin, FALSE, 0);
113
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200114 return OK;
115}
116
117/*
118 * Return the width of tabpanel.
119 */
120 int
121tabpanel_width(void)
122{
123 if (msg_scrolled != 0)
124 return 0;
125
126 switch (p_stpl)
127 {
128 case 0:
129 return 0;
130 case 1:
131 if (first_tabpage->tp_next == NULL)
132 return 0;
133 }
134 if (Columns < tpl_columns)
135 return 0;
136 else
137 return tpl_columns;
138}
139
140/*
141 * Return the offset of a window considering the width of tabpanel.
142 */
143 int
144tabpanel_leftcol(win_T *wp)
145{
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200146 if (cmdline_pum_active() || (wp != NULL && WIN_IS_POPUP(wp)))
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200147 return 0;
148 else
149 return tpl_align == ALIGN_RIGHT ? 0 : tabpanel_width();
150}
151
152/*
153 * draw the tabpanel.
154 */
155 void
156draw_tabpanel(void)
157{
158 int saved_KeyTyped = KeyTyped;
159 int saved_got_int = got_int;
160 int maxwidth = tabpanel_width();
161 int vs_attr = HL_ATTR(HLF_C);
162 int curtab_row = 0;
163#ifndef MSWIN
164 int row = 0;
165 int off = 0;
166#endif
167int vsrow = 0;
168 int is_right = tpl_align == ALIGN_RIGHT;
169
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200170 if (maxwidth == 0)
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200171 return;
172
173#ifndef MSWIN
174 // We need this section only for the Vim running on WSL.
175 for (row = 0; row < cmdline_row; row++)
176 {
177 if (is_right)
178 off = LineOffset[row] + Columns - maxwidth;
179 else
180 off = LineOffset[row];
181
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200182 vim_memset(ScreenLines + off, ' ', (size_t)maxwidth * sizeof(schar_T));
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200183 if (enc_utf8)
184 vim_memset(ScreenLinesUC + off, -1,
185 (size_t)maxwidth * sizeof(u8char_T));
186 }
187#endif
188
189 // Reset got_int to avoid build_stl_str_hl() isn't evaluted.
190 got_int = FALSE;
191
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200192 if (tpl_is_vert)
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200193 {
194 if (is_right)
195 {
196 // draw main contents in tabpanel
197 do_by_tplmode(TPLMODE_GET_CURTAB_ROW, VERT_LEN,
198 maxwidth - VERT_LEN, &curtab_row, NULL);
199 do_by_tplmode(TPLMODE_REDRAW, VERT_LEN, maxwidth, &curtab_row,
200 NULL);
201 // clear for multi-byte vert separater
202 screen_fill(0, cmdline_row, COLUMNS_WITHOUT_TPL(),
203 COLUMNS_WITHOUT_TPL() + VERT_LEN,
204 TPL_FILLCHAR, TPL_FILLCHAR, vs_attr);
205 // draw vert separater in tabpanel
206 for (vsrow = 0; vsrow < cmdline_row; vsrow++)
207 screen_putchar(curwin->w_fill_chars.tpl_vert, vsrow,
208 COLUMNS_WITHOUT_TPL(), vs_attr);
209 }
210 else
211 {
212 // draw main contents in tabpanel
213 do_by_tplmode(TPLMODE_GET_CURTAB_ROW, 0, maxwidth - VERT_LEN,
214 &curtab_row, NULL);
215 do_by_tplmode(TPLMODE_REDRAW, 0, maxwidth - VERT_LEN,
216 &curtab_row, NULL);
217 // clear for multi-byte vert separater
218 screen_fill(0, cmdline_row, maxwidth - VERT_LEN,
219 maxwidth, TPL_FILLCHAR, TPL_FILLCHAR, vs_attr);
220 // draw vert separater in tabpanel
221 for (vsrow = 0; vsrow < cmdline_row; vsrow++)
222 screen_putchar(curwin->w_fill_chars.tpl_vert, vsrow,
223 maxwidth - VERT_LEN, vs_attr);
224 }
225 }
226 else
227 {
228 do_by_tplmode(TPLMODE_GET_CURTAB_ROW, 0, maxwidth, &curtab_row, NULL);
229 do_by_tplmode(TPLMODE_REDRAW, 0, maxwidth, &curtab_row, NULL);
230 }
231
232 got_int |= saved_got_int;
233
234 // A user function may reset KeyTyped, restore it.
235 KeyTyped = saved_KeyTyped;
236
237 redraw_tabpanel = FALSE;
238}
239
240/*
241 * Return tabpagenr when clicking and dragging in tabpanel.
242 */
243 int
244get_tabpagenr_on_tabpanel(void)
245{
246 int maxwidth = tabpanel_width();
247 int curtab_row = 0;
248 int tabpagenr = 0;
249
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200250 if (maxwidth == 0)
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200251 return -1;
252
253 do_by_tplmode(TPLMODE_GET_CURTAB_ROW, 0, maxwidth, &curtab_row, NULL);
254 do_by_tplmode(TPLMODE_GET_TABPAGENR, 0, maxwidth, &curtab_row,
255 &tabpagenr);
256
257 return tabpagenr;
258}
259
260/*
261 * Fill tailing area between {start_row} and {end_row - 1}.
262 */
263 static void
264screen_fill_tailing_area(
265 int tplmode,
266 int row_start,
267 int row_end,
268 int col_start,
269 int col_end,
270 int attr)
271{
272 int is_right = tpl_align == ALIGN_RIGHT;
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200273 if (tplmode == TPLMODE_REDRAW)
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200274 screen_fill(row_start, row_end,
275 (is_right ? COLUMNS_WITHOUT_TPL() : 0) + col_start,
276 (is_right ? COLUMNS_WITHOUT_TPL() : 0) + col_end,
277 TPL_FILLCHAR, TPL_FILLCHAR, attr);
278}
279
280/*
281 * screen_puts_len() for tabpanel.
282 */
283 static void
284screen_puts_len_for_tabpanel(
285 int tplmode,
286 char_u *p,
287 int len,
288 int attr,
289 tabpanel_T *pargs)
290{
291 int j, k;
292 int chlen;
293 int chcells;
294 char_u buf[IOSIZE];
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200295 char_u *temp;
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200296
297 for (j = 0; j < len;)
298 {
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200299 if (tplmode != TPLMODE_GET_CURTAB_ROW
300 && pargs->maxrow <= *pargs->prow - pargs->offsetrow)
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200301 break;
302
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200303 if (p[j] == '\n' || p[j] == '\r')
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200304 {
305 // fill the tailing area of current row.
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200306 if (*pargs->prow - pargs->offsetrow >= 0
307 && *pargs->prow - pargs->offsetrow < pargs->maxrow)
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200308 screen_fill_tailing_area(tplmode,
309 *pargs->prow - pargs->offsetrow,
310 *pargs->prow - pargs->offsetrow + 1,
311 *pargs->pcol, pargs->col_end, attr);
312 (*pargs->prow)++;
313 *pargs->pcol = pargs->col_start;
314 j++;
315 }
316 else
317 {
318 if (has_mbyte)
319 chlen = (*mb_ptr2len)(p + j);
320 else
321 chlen = (int)STRLEN(p + j);
322
323 for (k = 0; k < chlen; k++)
324 buf[k] = p[j + k];
325 buf[chlen] = NUL;
326 j += chlen;
327
328 // Make all characters printable.
329 temp = transstr(buf);
330 if (temp != NULL)
331 {
332 vim_strncpy(buf, temp, sizeof(buf) - 1);
333 vim_free(temp);
334 }
335
336 if (has_mbyte)
337 chcells = (*mb_ptr2cells)(buf);
338 else
339 chcells = 1;
340
341 if (pargs->col_end < (*pargs->pcol) + chcells)
342 {
343 // fill the tailing area of current row.
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200344 if (*pargs->prow - pargs->offsetrow >= 0
345 && *pargs->prow - pargs->offsetrow < pargs->maxrow)
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200346 screen_fill_tailing_area(tplmode,
347 *pargs->prow - pargs->offsetrow,
348 *pargs->prow - pargs->offsetrow + 1,
349 *pargs->pcol, pargs->col_end, attr);
350 *pargs->pcol = pargs->col_end;
351
352 if (pargs->col_end < chcells)
353 break;
354 }
355
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200356 if (*pargs->pcol + chcells <= pargs->col_end)
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200357 {
358 int off = (tpl_align == ALIGN_RIGHT)
359 ? COLUMNS_WITHOUT_TPL()
360 : 0;
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200361 if (TPLMODE_REDRAW == tplmode
362 && (*pargs->prow - pargs->offsetrow >= 0
363 && *pargs->prow - pargs->offsetrow < pargs->maxrow))
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200364 screen_puts(buf, *pargs->prow - pargs->offsetrow,
365 *pargs->pcol + off, attr);
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200366 *pargs->pcol += chcells;
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200367 }
368 }
369 }
370}
371
372/*
373 * default tabpanel drawing behavior if 'tabpanel' option is empty.
374 */
375 static void
376draw_tabpanel_default(int tplmode, tabpanel_T *pargs)
377{
378 int modified;
379 int wincount;
380 int len = 0;
381 char_u buf[2] = { NUL, NUL };
382
383 modified = FALSE;
384 for (wincount = 0; pargs->wp != NULL;
385 pargs->wp = pargs->wp->w_next, ++wincount)
386 if (bufIsChanged(pargs->wp->w_buffer))
387 modified = TRUE;
388
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200389 if (modified || wincount > 1)
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200390 {
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200391 if (wincount > 1)
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200392 {
393 vim_snprintf((char *)NameBuff, MAXPATHL, "%d", wincount);
394 len = (int)STRLEN(NameBuff);
395 screen_puts_len_for_tabpanel(tplmode, NameBuff, len,
396#if defined(FEAT_SYN_HL)
397 hl_combine_attr(pargs->attr, HL_ATTR(HLF_T)),
398#else
399 pargs->attr,
400#endif
401 pargs);
402 }
403 if (modified)
404 {
405 buf[0] = '+';
406 screen_puts_len_for_tabpanel(tplmode, buf, 1, pargs->attr, pargs);
407 }
408
409 buf[0] = TPL_FILLCHAR;
410 screen_puts_len_for_tabpanel(tplmode, buf, 1, pargs->attr, pargs);
411 }
412
413 get_trans_bufname(pargs->cwp->w_buffer);
414 shorten_dir(NameBuff);
415 len = (int)STRLEN(NameBuff);
416 screen_puts_len_for_tabpanel(tplmode, NameBuff, len, pargs->attr, pargs);
417
418 // fill the tailing area of current row.
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200419 if (*pargs->prow - pargs->offsetrow >= 0
420 && *pargs->prow - pargs->offsetrow < pargs->maxrow)
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200421 screen_fill_tailing_area(tplmode, *pargs->prow - pargs->offsetrow,
422 *pargs->prow - pargs->offsetrow + 1,
423 *pargs->pcol, pargs->col_end, pargs->attr);
424 *pargs->pcol = pargs->col_end;
425}
426
427/*
428 * default tabpanel drawing behavior if 'tabpanel' option is NOT empty.
429 */
430 static void
431draw_tabpanel_userdefined(int tplmode, tabpanel_T *pargs)
432{
433 char_u *p;
434 int p_crb_save;
435 char_u buf[IOSIZE];
436 stl_hlrec_T *hltab;
437 stl_hlrec_T *tabtab;
438 int curattr;
439 int n;
440
441 // Temporarily reset 'cursorbind', we don't want a side effect from moving
442 // the cursor away and back.
443 p_crb_save = pargs->cwp->w_p_crb;
444 pargs->cwp->w_p_crb = FALSE;
445
446 // Make a copy, because the statusline may include a function call that
447 // might change the option value and free the memory.
448 p = vim_strsave(pargs->user_defined);
449
450 build_stl_str_hl(pargs->cwp, buf, sizeof(buf),
451 p, opt_name, opt_scope,
452 TPL_FILLCHAR, pargs->col_end - pargs->col_start, &hltab, &tabtab);
453
454 vim_free(p);
455 pargs->cwp->w_p_crb = p_crb_save;
456
457 curattr = pargs->attr;
458 p = buf;
459 for (n = 0; hltab[n].start != NULL; n++)
460 {
461 screen_puts_len_for_tabpanel(tplmode, p, (int)(hltab[n].start - p),
462 curattr, pargs);
463 p = hltab[n].start;
464 if (hltab[n].userhl == 0)
465 curattr = pargs->attr;
466 else if (hltab[n].userhl < 0)
467 curattr = syn_id2attr(-hltab[n].userhl);
468#ifdef FEAT_TERMINAL
469 else if (pargs->wp != NULL && pargs->wp != curwin
470 && bt_terminal(pargs->wp->w_buffer)
471 && pargs->wp->w_status_height != 0)
472 curattr = highlight_stltermnc[hltab[n].userhl - 1];
473 else if (pargs->wp != NULL && bt_terminal(pargs->wp->w_buffer)
474 && pargs->wp->w_status_height != 0)
475 curattr = highlight_stlterm[hltab[n].userhl - 1];
476#endif
477 else if (pargs->wp != NULL && pargs->wp != curwin
478 && pargs->wp->w_status_height != 0)
479 curattr = highlight_stlnc[hltab[n].userhl - 1];
480 else
481 curattr = highlight_user[hltab[n].userhl - 1];
482 }
483 screen_puts_len_for_tabpanel(tplmode, p, (int)STRLEN(p), curattr, pargs);
484
485 // fill the tailing area of current row.
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200486 if (*pargs->prow - pargs->offsetrow >= 0
487 && *pargs->prow - pargs->offsetrow < pargs->maxrow)
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200488 screen_fill_tailing_area(tplmode, *pargs->prow - pargs->offsetrow,
489 *pargs->prow - pargs->offsetrow + 1, *pargs->pcol,
490 pargs->col_end, curattr);
491 *pargs->pcol = pargs->col_end;
492}
493
494 static char_u *
495starts_with_percent_and_bang(tabpanel_T *pargs)
496{
497 int len = 0;
498 char_u *usefmt = p_tpl;
Christian Brabandta88c5bd2025-05-26 19:51:03 +0200499 int did_emsg_before = did_emsg;
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200500
501 if (usefmt == NULL)
502 return NULL;
503
504 len = (int)STRLEN(usefmt);
505
506 if (len == 0)
507 return NULL;
508
509#ifdef FEAT_EVAL
510 // if "fmt" was set insecurely it needs to be evaluated in the sandbox
511 int use_sandbox = was_set_insecurely(opt_name, opt_scope);
512
513 // When the format starts with "%!" then evaluate it as an expression and
514 // use the result as the actual format string.
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200515 if (len > 1 && usefmt[0] == '%' && usefmt[1] == '!')
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200516 {
517 typval_T tv;
518 char_u *p = NULL;
519
520 tv.v_type = VAR_NUMBER;
521 tv.vval.v_number = pargs->cwp->w_id;
522 set_var((char_u *)"g:tabpanel_winid", &tv, FALSE);
523
524 p = eval_to_string_safe(usefmt + 2, use_sandbox, FALSE, FALSE);
525 if (p != NULL)
526 usefmt = p;
527
528 do_unlet((char_u *)"g:tabpanel_winid", TRUE);
Christian Brabandta88c5bd2025-05-26 19:51:03 +0200529
530 if (did_emsg > did_emsg_before)
531 {
532 usefmt = NULL;
533 set_string_option_direct((char_u *)"tabpanel", -1, (char_u *)"",
534 OPT_FREE | OPT_GLOBAL, SID_ERROR);
535 }
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200536 }
537#endif
538
539 return usefmt;
540}
541
542/*
543 * do something by tplmode for drawing tabpanel.
544 */
545 static void
546do_by_tplmode(
547 int tplmode,
548 int col_start,
549 int col_end,
550 int *pcurtab_row,
551 int *ptabpagenr)
552{
553 int attr_tplf = HL_ATTR(HLF_TPLF);
554 int attr_tpls = HL_ATTR(HLF_TPLS);
555 int attr_tpl = HL_ATTR(HLF_TPL);
556 int col = col_start;
557 int row = 0;
558 tabpage_T *tp = NULL;
559 typval_T v;
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200560 tabpanel_T args;
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200561
562 args.maxrow = cmdline_row;
563 args.offsetrow = 0;
564 args.col_start = col_start;
565 args.col_end = col_end;
566
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200567 if (tplmode != TPLMODE_GET_CURTAB_ROW && args.maxrow > 0)
568 while (args.offsetrow + args.maxrow <= *pcurtab_row)
569 args.offsetrow += args.maxrow;
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200570
571 tp = first_tabpage;
572
573 for (row = 0; tp != NULL; row++)
574 {
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200575 if (tplmode != TPLMODE_GET_CURTAB_ROW
576 && args.maxrow <= row - args.offsetrow)
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200577 break;
578
579 col = col_start;
580
581 v.v_type = VAR_NUMBER;
582 v.vval.v_number = tabpage_index(tp);
583 set_var((char_u *)"g:actual_curtabpage", &v, TRUE);
584
585 if (tp->tp_topframe == topframe)
586 {
587 args.attr = attr_tpls;
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200588 if (tplmode == TPLMODE_GET_CURTAB_ROW)
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200589 {
590 *pcurtab_row = row;
591 break;
592 }
593 }
594 else
595 args.attr = attr_tpl;
596
597 if (tp == curtab)
598 {
599 args.cwp = curwin;
600 args.wp = firstwin;
601 }
602 else
603 {
604 args.cwp = tp->tp_curwin;
605 args.wp = tp->tp_firstwin;
606 }
607
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200608 char_u *usefmt = starts_with_percent_and_bang(&args);
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200609 if (usefmt != NULL)
610 {
611 char_u buf[IOSIZE];
612 char_u *p = usefmt;
613 size_t i = 0;
614
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200615 while (p[i] != NUL)
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200616 {
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200617 while (p[i] == '\n' || p[i] == '\r')
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200618 {
619 // fill the tailing area of current row.
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200620 if (row - args.offsetrow >= 0
621 && row - args.offsetrow < args.maxrow)
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200622 screen_fill_tailing_area(tplmode,
623 row - args.offsetrow,
624 row - args.offsetrow + 1,
625 col, args.col_end, args.attr);
626 row++;
627 col = col_start;
628 p++;
629 }
630
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200631 while (p[i] != '\n' && p[i] != '\r' && (p[i] != NUL))
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200632 {
633 if (i + 1 >= sizeof(buf))
634 break;
635 buf[i] = p[i];
636 i++;
637 }
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200638 buf[i] = NUL;
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200639
640 args.user_defined = buf;
641 args.prow = &row;
642 args.pcol = &col;
643 draw_tabpanel_userdefined(tplmode, &args);
644
645 p += i;
646 i = 0;
647 }
648 if (usefmt != p_tpl)
649 VIM_CLEAR(usefmt);
650 }
651 else
652 {
653 args.user_defined = NULL;
654 args.prow = &row;
655 args.pcol = &col;
656 draw_tabpanel_default(tplmode, &args);
657 }
658
659 do_unlet((char_u *)"g:actual_curtabpage", TRUE);
660
661 tp = tp->tp_next;
662
Hirohito Higashic659e4a2025-05-16 19:34:34 +0200663 if ((tplmode == TPLMODE_GET_TABPAGENR)
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200664 && (mouse_row <= (row - args.offsetrow)))
665 {
666 *ptabpagenr = v.vval.v_number;
667 break;
668 }
669 }
670
671 // fill the area of TabPanelFill.
672 screen_fill_tailing_area(tplmode, row - args.offsetrow, args.maxrow,
673 args.col_start, args.col_end, attr_tplf);
674}
675
676#endif // FEAT_TABPANEL