aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2021-12-19 09:55:17 +0800
committerzeertzjq <zeertzjq@outlook.com>2021-12-19 09:55:17 +0800
commitfd70018e21b8ce4b8c9f6074854e0174a87dfbb5 (patch)
tree5a243a2db24ba79c2940857df85811c2ec09a77e /runtime
parent95803f0e902278079e5876082465b1910c819947 (diff)
downloadrneovim-fd70018e21b8ce4b8c9f6074854e0174a87dfbb5.tar.gz
rneovim-fd70018e21b8ce4b8c9f6074854e0174a87dfbb5.tar.bz2
rneovim-fd70018e21b8ce4b8c9f6074854e0174a87dfbb5.zip
vim-patch:8.2.2508: cannot change the character displayed in non existing lines
Problem: Cannot change the character displayed in non existing lines. Solution: Add the "eob" item to 'fillchars'. (closes vim/vim#7832, closes vim/vim#3820) https://github.com/vim/vim/commit/a98f8a230596d8fb44cc68321de72980a21428cb Nvim has already implemented this feature, so this just ports the tests and docs.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/windows.txt10
1 files changed, 6 insertions, 4 deletions
diff --git a/runtime/doc/windows.txt b/runtime/doc/windows.txt
index e0c33fa2c9..bb31895c96 100644
--- a/runtime/doc/windows.txt
+++ b/runtime/doc/windows.txt
@@ -116,10 +116,12 @@ other windows. If 'mouse' is enabled, a status line can be dragged to resize
windows.
*filler-lines*
-The lines after the last buffer line in a window are called filler lines.
-These lines start with a tilde (~) character. By default, these are
-highlighted as NonText (|hl-NonText|). The EndOfBuffer highlight group
-(|hl-EndOfBuffer|) can be used to change the highlighting of filler lines.
+The lines after the last buffer line in a window are called filler lines. By
+default, these lines start with a tilde (~) character. The 'eob' item in the
+'fillchars' option can be used to change this character. By default, these
+characters are highlighted as NonText (|hl-NonText|). The EndOfBuffer
+highlight group (|hl-EndOfBuffer|) can be used to change the highlighting of
+the filler characters.
==============================================================================
3. Opening and closing a window *opening-window* *E36*