diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-10-05 07:25:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-05 07:25:30 +0800 |
commit | 759259e8af2f6f5e840fcbd687caaaf5f2b9b676 (patch) | |
tree | cedc2681f83934bc007134b862f24d1bc41bec0c /src/nvim/screen.c | |
parent | 6abb48105135ce3ae7eda22334f8104c5ddf20ce (diff) | |
parent | 98bb2c19309ced1131afce4fc2cdae518d0a2dcd (diff) | |
download | rneovim-759259e8af2f6f5e840fcbd687caaaf5f2b9b676.tar.gz rneovim-759259e8af2f6f5e840fcbd687caaaf5f2b9b676.tar.bz2 rneovim-759259e8af2f6f5e840fcbd687caaaf5f2b9b676.zip |
Merge pull request #20490 from zeertzjq/vim-9.0.0656
vim-patch:9.0.{0656,0661}: 'fillchars' "lastline"
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 1af93f061c..bc440441e1 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -1328,6 +1328,7 @@ char *set_chars_option(win_T *wp, char **varp, bool apply) { &wp->w_p_fcs_chars.diff, "diff", '-' }, { &wp->w_p_fcs_chars.msgsep, "msgsep", ' ' }, { &wp->w_p_fcs_chars.eob, "eob", '~' }, + { &wp->w_p_fcs_chars.lastline, "lastline", '@' }, }; struct chars_tab lcs_tab[] = { |