forked from aniani/vim
patch 9.1.0619: tests: test_popup fails
Problem: tests: test_popup fails (after v9.1.0618) Solution: Correct test, move combining extra attributes to pum_compute_text_attrs() (glepnir) closes: #15353 Signed-off-by: glepnir <glephunter@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
508e7856ec
commit
8754efe437
@@ -425,7 +425,7 @@ pum_under_menu(int row, int col, int only_redrawing)
|
|||||||
* Returns attributes for every cell, or NULL if all attributes are the same.
|
* Returns attributes for every cell, or NULL if all attributes are the same.
|
||||||
*/
|
*/
|
||||||
static int *
|
static int *
|
||||||
pum_compute_text_attrs(char_u *text, hlf_T hlf)
|
pum_compute_text_attrs(char_u *text, hlf_T hlf, int extra_hlattr)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
size_t leader_len;
|
size_t leader_len;
|
||||||
@@ -483,6 +483,9 @@ pum_compute_text_attrs(char_u *text, hlf_T hlf)
|
|||||||
else if (matched_start && ptr < text + leader_len)
|
else if (matched_start && ptr < text + leader_len)
|
||||||
new_attr = highlight_attr[hlf == HLF_PSI ? HLF_PMSI : HLF_PMNI];
|
new_attr = highlight_attr[hlf == HLF_PSI ? HLF_PMSI : HLF_PMNI];
|
||||||
|
|
||||||
|
if (extra_hlattr > 0)
|
||||||
|
new_attr = hl_combine_attr(new_attr, extra_hlattr);
|
||||||
|
|
||||||
char_cells = mb_ptr2cells(ptr);
|
char_cells = mb_ptr2cells(ptr);
|
||||||
for (i = 0; i < char_cells; i++)
|
for (i = 0; i < char_cells; i++)
|
||||||
attrs[cell_idx + i] = new_attr;
|
attrs[cell_idx + i] = new_attr;
|
||||||
@@ -510,8 +513,7 @@ pum_screen_puts_with_attrs(
|
|||||||
int cells UNUSED,
|
int cells UNUSED,
|
||||||
char_u *text,
|
char_u *text,
|
||||||
int textlen,
|
int textlen,
|
||||||
int *attrs,
|
int *attrs)
|
||||||
int extra_attr)
|
|
||||||
{
|
{
|
||||||
int col_start = col;
|
int col_start = col;
|
||||||
char_u *ptr = text;
|
char_u *ptr = text;
|
||||||
@@ -528,8 +530,6 @@ pum_screen_puts_with_attrs(
|
|||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
attr = attrs[col - col_start];
|
attr = attrs[col - col_start];
|
||||||
if (extra_attr > 0)
|
|
||||||
attr = hl_combine_attr(extra_attr, attr);
|
|
||||||
screen_puts_len(ptr, char_len, row, col, attr);
|
screen_puts_len(ptr, char_len, row, col, attr);
|
||||||
col += mb_ptr2cells(ptr);
|
col += mb_ptr2cells(ptr);
|
||||||
ptr += char_len;
|
ptr += char_len;
|
||||||
@@ -661,7 +661,8 @@ pum_redraw(void)
|
|||||||
if (saved != NUL)
|
if (saved != NUL)
|
||||||
*p = saved;
|
*p = saved;
|
||||||
|
|
||||||
attrs = pum_compute_text_attrs(st, hlf);
|
int extra_hlattr = pum_array[idx].pum_extrahlattr;
|
||||||
|
attrs = pum_compute_text_attrs(st, hlf, extra_hlattr);
|
||||||
|
|
||||||
#ifdef FEAT_RIGHTLEFT
|
#ifdef FEAT_RIGHTLEFT
|
||||||
if (pum_rl)
|
if (pum_rl)
|
||||||
@@ -703,8 +704,7 @@ pum_redraw(void)
|
|||||||
else
|
else
|
||||||
pum_screen_puts_with_attrs(row,
|
pum_screen_puts_with_attrs(row,
|
||||||
col - cells + 1, cells, rt,
|
col - cells + 1, cells, rt,
|
||||||
(int)STRLEN(rt), attrs,
|
(int)STRLEN(rt), attrs);
|
||||||
pum_array[idx].pum_extrahlattr);
|
|
||||||
|
|
||||||
vim_free(rt_start);
|
vim_free(rt_start);
|
||||||
}
|
}
|
||||||
@@ -738,8 +738,7 @@ pum_redraw(void)
|
|||||||
screen_puts_len(st, size, row, col, attr);
|
screen_puts_len(st, size, row, col, attr);
|
||||||
else
|
else
|
||||||
pum_screen_puts_with_attrs(row, col, cells,
|
pum_screen_puts_with_attrs(row, col, cells,
|
||||||
st, size, attrs,
|
st, size, attrs);
|
||||||
pum_array[idx].pum_extrahlattr);
|
|
||||||
|
|
||||||
vim_free(st);
|
vim_free(st);
|
||||||
}
|
}
|
||||||
|
@@ -1509,9 +1509,9 @@ func Test_pum_extrahl()
|
|||||||
endif
|
endif
|
||||||
return {
|
return {
|
||||||
\ 'words': [
|
\ 'words': [
|
||||||
\ { 'word': 'aword1', 'menu': 'extra text 1', 'kind': 'W', 'extrahl': 'StrikeFake' },
|
\ { 'word': 'aword1', 'menu': 'extra text 1', 'kind': 'W', 'hl_group': 'StrikeFake' },
|
||||||
\ { 'word': 'aword2', 'menu': 'extra text 2', 'kind': 'W', },
|
\ { 'word': 'aword2', 'menu': 'extra text 2', 'kind': 'W', },
|
||||||
\ { 'word': '你好', 'menu': 'extra text 3', 'kind': 'W', 'extrahl': 'StrikeFake' },
|
\ { 'word': '你好', 'menu': 'extra text 3', 'kind': 'W', 'hl_group': 'StrikeFake' },
|
||||||
\]}
|
\]}
|
||||||
endfunc
|
endfunc
|
||||||
set completeopt=menu
|
set completeopt=menu
|
||||||
|
@@ -704,6 +704,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
619,
|
||||||
/**/
|
/**/
|
||||||
618,
|
618,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user