0
0
mirror of https://github.com/vim/vim.git synced 2025-10-02 05:04:20 -04:00

patch 8.1.1396: 'wincolor' does not apply to lines below the buffer

Problem:    'wincolor' does not apply to lines below the buffer.
Solution:   Also apply 'wincolor' to the "~" lines and the number column.
This commit is contained in:
Bram Moolenaar
2019-05-25 22:57:30 +02:00
parent adfde115d5
commit 193ffd1d9f
4 changed files with 65 additions and 22 deletions

View File

@@ -2418,6 +2418,14 @@ win_draw_end(
hlf_T hl) hlf_T hl)
{ {
int n = 0; int n = 0;
int attr = HL_ATTR(hl);
int wcr_attr = 0;
if (*wp->w_p_wcr != NUL)
{
wcr_attr = syn_name2attr(wp->w_p_wcr);
attr = hl_combine_attr(wcr_attr, attr);
}
if (draw_margin) if (draw_margin)
{ {
@@ -2427,19 +2435,19 @@ win_draw_end(
if (fdc > 0) if (fdc > 0)
// draw the fold column // draw the fold column
n = screen_fill_end(wp, ' ', ' ', n, fdc, n = screen_fill_end(wp, ' ', ' ', n, fdc,
row, endrow, HL_ATTR(HLF_FC)); row, endrow, hl_combine_attr(wcr_attr, HL_ATTR(HLF_FC)));
#endif #endif
#ifdef FEAT_SIGNS #ifdef FEAT_SIGNS
if (signcolumn_on(wp)) if (signcolumn_on(wp))
// draw the sign column // draw the sign column
n = screen_fill_end(wp, ' ', ' ', n, 2, n = screen_fill_end(wp, ' ', ' ', n, 2,
row, endrow, HL_ATTR(HLF_SC)); row, endrow, hl_combine_attr(wcr_attr, HL_ATTR(HLF_SC)));
#endif #endif
if ((wp->w_p_nu || wp->w_p_rnu) if ((wp->w_p_nu || wp->w_p_rnu)
&& vim_strchr(p_cpo, CPO_NUMCOL) == NULL) && vim_strchr(p_cpo, CPO_NUMCOL) == NULL)
// draw the number column // draw the number column
n = screen_fill_end(wp, ' ', ' ', n, number_width(wp) + 1, n = screen_fill_end(wp, ' ', ' ', n, number_width(wp) + 1,
row, endrow, HL_ATTR(HLF_N)); row, endrow, hl_combine_attr(wcr_attr, HL_ATTR(HLF_N)));
} }
#ifdef FEAT_RIGHTLEFT #ifdef FEAT_RIGHTLEFT
@@ -2447,17 +2455,17 @@ win_draw_end(
{ {
screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow, screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
wp->w_wincol, W_ENDCOL(wp) - 1 - n, wp->w_wincol, W_ENDCOL(wp) - 1 - n,
c2, c2, HL_ATTR(hl)); c2, c2, attr);
screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow, screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
W_ENDCOL(wp) - 1 - n, W_ENDCOL(wp) - n, W_ENDCOL(wp) - 1 - n, W_ENDCOL(wp) - n,
c1, c2, HL_ATTR(hl)); c1, c2, attr);
} }
else else
#endif #endif
{ {
screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow, screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
wp->w_wincol + n, (int)W_ENDCOL(wp), wp->w_wincol + n, (int)W_ENDCOL(wp),
c1, c2, HL_ATTR(hl)); c1, c2, attr);
} }
set_empty_rows(wp, row); set_empty_rows(wp, row);
@@ -3100,14 +3108,15 @@ win_line(
pos_T pos; pos_T pos;
long v; long v;
int char_attr = 0; /* attributes for next character */ int char_attr = 0; // attributes for next character
int attr_pri = FALSE; /* char_attr has priority */ int attr_pri = FALSE; // char_attr has priority
int area_highlighting = FALSE; /* Visual or incsearch highlighting int area_highlighting = FALSE; // Visual or incsearch highlighting
in this line */ // in this line
int vi_attr = 0; /* attributes for Visual and incsearch int vi_attr = 0; // attributes for Visual and incsearch
highlighting */ // highlighting
int area_attr = 0; /* attributes desired by highlighting */ int wcr_attr = 0; // attributes from 'wincolor'
int search_attr = 0; /* attributes desired by 'hlsearch' */ int area_attr = 0; // attributes desired by highlighting
int search_attr = 0; // attributes desired by 'hlsearch'
#ifdef FEAT_SYN_HL #ifdef FEAT_SYN_HL
int vcol_save_attr = 0; /* saved attr for 'cursorcolumn' */ int vcol_save_attr = 0; /* saved attr for 'cursorcolumn' */
int syntax_attr = 0; /* attributes desired by syntax */ int syntax_attr = 0; /* attributes desired by syntax */
@@ -3559,12 +3568,12 @@ win_line(
if (*wp->w_p_wcr != NUL) if (*wp->w_p_wcr != NUL)
{ {
int attr = syn_name2attr(wp->w_p_wcr); wcr_attr = syn_name2attr(wp->w_p_wcr);
// 'wincolor' highlighting for the whole window // 'wincolor' highlighting for the whole window
if (attr != 0) if (wcr_attr != 0)
{ {
win_attr = attr; win_attr = wcr_attr;
area_highlighting = TRUE; area_highlighting = TRUE;
} }
} }
@@ -3850,7 +3859,7 @@ win_line(
n_extra = 1; n_extra = 1;
c_extra = cmdwin_type; c_extra = cmdwin_type;
c_final = NUL; c_final = NUL;
char_attr = HL_ATTR(HLF_AT); char_attr = hl_combine_attr(wcr_attr, HL_ATTR(HLF_AT));
} }
} }
#endif #endif
@@ -3876,7 +3885,7 @@ win_line(
p_extra = p_extra_free; p_extra = p_extra_free;
c_extra = NUL; c_extra = NUL;
c_final = NUL; c_final = NUL;
char_attr = HL_ATTR(HLF_FC); char_attr = hl_combine_attr(wcr_attr, HL_ATTR(HLF_FC));
} }
} }
} }
@@ -3898,7 +3907,7 @@ win_line(
/* Draw two cells with the sign value or blank. */ /* Draw two cells with the sign value or blank. */
c_extra = ' '; c_extra = ' ';
c_final = NUL; c_final = NUL;
char_attr = HL_ATTR(HLF_SC); char_attr = hl_combine_attr(wcr_attr, HL_ATTR(HLF_SC));
n_extra = 2; n_extra = 2;
if (row == startrow if (row == startrow
@@ -4012,7 +4021,7 @@ win_line(
c_final = NUL; c_final = NUL;
} }
n_extra = number_width(wp) + 1; n_extra = number_width(wp) + 1;
char_attr = HL_ATTR(HLF_N); char_attr = hl_combine_attr(wcr_attr, HL_ATTR(HLF_N));
#ifdef FEAT_SYN_HL #ifdef FEAT_SYN_HL
/* When 'cursorline' is set highlight the line number of /* When 'cursorline' is set highlight the line number of
* the current line differently. * the current line differently.
@@ -4020,7 +4029,7 @@ win_line(
* when CursorLineNr isn't set? */ * when CursorLineNr isn't set? */
if ((wp->w_p_cul || wp->w_p_rnu) if ((wp->w_p_cul || wp->w_p_rnu)
&& lnum == wp->w_cursor.lnum) && lnum == wp->w_cursor.lnum)
char_attr = HL_ATTR(HLF_CLN); char_attr = hl_combine_attr(wcr_attr, HL_ATTR(HLF_CLN));
#endif #endif
} }
} }

View File

@@ -0,0 +1,8 @@
| +0#af5f00255#ffd7ff255@1|2| | +0#0000001&@4| +0&#e0e0e08| +0&#ffd7ff255@64
| +0#af5f00255&@1|1| |1+0#0000001&@4|1+0#0000000#e0e0e08@4| | +0#0000001#ffd7ff255@59
| +0#af5f00255&@1|0| |2+0#0000000#e0e0e08@4>2+0#0000001#ffd7ff255@5| +8&&@59
| +0#af5f00255&@1|1| |3+0#0000001&| |h|e|r|e+0&#e0e0e08| +0&#ffd7ff255|3| @62
| +0#af5f00255&@1|2| | +0#0000001&@4| +0&#e0e0e08| +0&#ffd7ff255@64
|~+0#4040ff13&| @73
|~| @73
|-+2#0000000#ffffff0@1| |V|I|S|U|A|L| |-@1| +0&&@34|2| @8|3|,|6| @10|A|l@1|

View File

@@ -573,6 +573,30 @@ func Test_cursorline_with_visualmode()
call delete('Xtest_cursorline_with_visualmode') call delete('Xtest_cursorline_with_visualmode')
endfunc endfunc
func Test_wincolor()
if !CanRunVimInTerminal()
return
endif
call writefile([
\ 'set cursorline cursorcolumn rnu',
\ 'call setline(1, ["","1111111111","22222222222","3 here 3",""])',
\ 'set wincolor=Pmenu',
\ '/here',
\ ], 'Xtest_wincolor')
let buf = RunVimInTerminal('-S Xtest_wincolor', {'rows': 8})
call term_wait(buf)
call term_sendkeys(buf, "2G5lvj")
call term_wait(buf)
call VerifyScreenDump(buf, 'Test_wincolor_01', {})
" clean up
call term_sendkeys(buf, "\<Esc>")
call StopVimInTerminal(buf)
call delete('Xtest_wincolor')
endfunc
" This test must come before the Test_cursorline test, as it appears this " This test must come before the Test_cursorline test, as it appears this
" defines the Normal highlighting group anyway. " defines the Normal highlighting group anyway.
func Test_1_highlight_Normalgroup_exists() func Test_1_highlight_Normalgroup_exists()

View File

@@ -767,6 +767,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 */
/**/
1396,
/**/ /**/
1395, 1395,
/**/ /**/