aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/drawscreen.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-08-26 10:46:18 +0800
committerGitHub <noreply@github.com>2022-08-26 10:46:18 +0800
commit946c0aa66f7b52c406b2654b9869edcb79db5ada (patch)
treec2798c15f37da62bfa97d157d9bf6e2ced6c0a29 /src/nvim/drawscreen.c
parentc12f6002a15b27ada972b997bc0950f37d06027d (diff)
parent36fdad557583216c93cf85d94400eaf6996dced7 (diff)
downloadrneovim-946c0aa66f7b52c406b2654b9869edcb79db5ada.tar.gz
rneovim-946c0aa66f7b52c406b2654b9869edcb79db5ada.tar.bz2
rneovim-946c0aa66f7b52c406b2654b9869edcb79db5ada.zip
Merge pull request #19953 from zeertzjq/vim-9.0.0036
vim-patch:8.2.2524,9.0.(0036,0037,0038,0040}
Diffstat (limited to 'src/nvim/drawscreen.c')
-rw-r--r--src/nvim/drawscreen.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nvim/drawscreen.c b/src/nvim/drawscreen.c
index 012c4ecb19..cf8178a30f 100644
--- a/src/nvim/drawscreen.c
+++ b/src/nvim/drawscreen.c
@@ -1920,8 +1920,9 @@ win_update_start:
wp->w_botline = lnum;
}
- // make sure the rest of the screen is blank
- // write the 'eob' character to rows that aren't part of the file.
+ // Make sure the rest of the screen is blank.
+ // write the "eob" character from 'fillchars' to rows that aren't part
+ // of the file.
win_draw_end(wp, wp->w_p_fcs_chars.eob, ' ', false, row, wp->w_grid.rows,
HLF_EOB);
}