Skip to content

Commit

Permalink
patch 8.2.3304: popup window title with wide characters is truncated
Browse files Browse the repository at this point in the history
Problem:    Popup window title with wide characters is truncated.
Solution:   Use vim_strsize() instead of MB_CHARLEN(). (Naruhiko Nishino,
            closes #8721)
  • Loading branch information
rbtnn authored and brammool committed Aug 7, 2021
1 parent 3276f58 commit c611941
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/popupwin.c
Expand Up @@ -3896,7 +3896,7 @@ update_popups(void (*win_update)(win_T *wp))
title_wincol = wp->w_wincol + 1;
if (wp->w_popup_title != NULL)
{
title_len = (int)MB_CHARLEN(wp->w_popup_title);
title_len = vim_strsize(wp->w_popup_title);

// truncate the title if too long
if (title_len > total_width - 2)
Expand Down
2 changes: 1 addition & 1 deletion src/testdir/dumps/Test_popupwin_multibytetitle.dump
@@ -1,7 +1,7 @@
>1+0&#ffffff0| @73
|2| @73
|3| @73
|4| @25|╔+0#0000001#ffd7ff255|▶|Ä|Ö|Ü|◀|═@12|╗| +0#0000000#ffffff0@27
|4| @25|╔+0#0000001#ffd7ff255|▶|Ä|あ*&|い|う|え|お|◀+&|═@4|╗| +0#0000000#ffffff0@27
|5| @25|║+0#0000001#ffd7ff255| |T+0&#e0e0e08|h|i|s| |i|s| |a| |l|i|n|e| @1| +0&#ffd7ff255|║| +0#0000000#ffffff0@27
|6| @25|║+0#0000001#ffd7ff255| |a|n|d| |a|n|o|t|h|e|r| |l|i|n|e| |║| +0#0000000#ffffff0@27
|7| @25|╚+0#0000001#ffd7ff255|═@17|╝| +0#0000000#ffffff0@27
Expand Down
2 changes: 1 addition & 1 deletion src/testdir/test_popupwin.vim
Expand Up @@ -1817,7 +1817,7 @@ func Test_popup_title()
call VerifyScreenDump(buf, 'Test_popupwin_longtitle_4', {})

call term_sendkeys(buf, ":call popup_clear()\<CR>")
call term_sendkeys(buf, ":call popup_menu(['This is a line', 'and another line'], #{title: '▶ÄÖÜ◀', })\<CR>")
call term_sendkeys(buf, ":call popup_menu(['This is a line', 'and another line'], #{title: '▶Äあいうえお◀', })\<CR>")
call VerifyScreenDump(buf, 'Test_popupwin_multibytetitle', {})
call term_sendkeys(buf, "x")

Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -755,6 +755,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
3304,
/**/
3303,
/**/
Expand Down

0 comments on commit c611941

Please sign in to comment.