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 /runtime | |
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 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 5871b82d9c..b6431c9a40 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -2148,6 +2148,9 @@ A jump table for the options with a short description can be found at |Q_op|. When neither "lastline" nor "truncate" is included, a last line that doesn't fit is replaced with "@" lines. + The "@" character can be changed by setting the "lastline" item in + 'fillchars'. The character is highlighted with |hl-NonText|. + *'eadirection'* *'ead'* 'eadirection' 'ead' string (default "both") global @@ -2483,6 +2486,7 @@ A jump table for the options with a short description can be found at |Q_op|. diff '-' deleted lines of the 'diff' option msgsep ' ' message separator 'display' eob '~' empty lines at the end of a buffer + lastline '@' 'display' contains lastline/truncate Any one that is omitted will fall back to the default. For "stl" and "stlnc" the space will be used when there is highlighting, '^' or '=' @@ -2520,6 +2524,7 @@ A jump table for the options with a short description can be found at |Q_op|. fold Folded |hl-Folded| diff DiffDelete |hl-DiffDelete| eob EndOfBuffer |hl-EndOfBuffer| + lastline NonText |hl-NonText| *'fixendofline'* *'fixeol'* *'nofixendofline'* *'nofixeol'* 'fixendofline' 'fixeol' boolean (default on) |