mirror of
https://github.com/neovim/neovim.git
synced 2025-09-22 11:18:19 +00:00
'fillchars': fix defaults logic; handle ambiwidth=double #7986
Update tests.
This commit is contained in:

committed by
Justin M. Keyes

parent
0c930c2969
commit
384a39479a
@@ -7088,11 +7088,7 @@ static int fillchar_status(int *attr, win_T *wp)
|
||||
static int fillchar_vsep(win_T *wp, int *attr)
|
||||
{
|
||||
*attr = win_hl_attr(wp, HLF_C);
|
||||
if (*attr == 0 && fill_vert == ' ') {
|
||||
return 9474; // default: "│"
|
||||
} else {
|
||||
return fill_vert;
|
||||
}
|
||||
return fill_vert;
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user