diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-10-04 21:52:01 +0800 |
|---|---|---|
| committer | zeertzjq <zeertzjq@outlook.com> | 2022-10-05 06:59:05 +0800 |
| commit | ddc363dce9020bce7d5bd931929f0d11cc87ad6d (patch) | |
| tree | 3874a940d7445f173e02164ddd5c1fb288dde29c /src/nvim/screen.c | |
| parent | 6abb48105135ce3ae7eda22334f8104c5ddf20ce (diff) | |
| download | rneovim-ddc363dce9020bce7d5bd931929f0d11cc87ad6d.tar.gz rneovim-ddc363dce9020bce7d5bd931929f0d11cc87ad6d.tar.bz2 rneovim-ddc363dce9020bce7d5bd931929f0d11cc87ad6d.zip | |
vim-patch:9.0.0656: cannot specify another character to use instead of '@'
Problem: Cannot specify another character to use instead of '@' at the end
of the window.
Solution: Add "lastline" to 'fillchars'. (Martin Tournoij, closes vim/vim#11264,
closes vim/vim#10963)
https://github.com/vim/vim/commit/4ba5f1dab656103e8f4a4505452d1816b9e83c1e
Use latest code in drawscreen.c instead.
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[] = { |