diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-01-18 07:14:12 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-18 07:14:12 +0800 |
commit | 780dd88b68b7a4d97c8b7ec6a8d33ab523ab04dd (patch) | |
tree | 6d50492bb8e1f6110661edaa14b570ebb0f5b05c /runtime/doc | |
parent | 5aa14e1231b7eccfbc54cba8f20d54105212847d (diff) | |
download | rneovim-780dd88b68b7a4d97c8b7ec6a8d33ab523ab04dd.tar.gz rneovim-780dd88b68b7a4d97c8b7ec6a8d33ab523ab04dd.tar.bz2 rneovim-780dd88b68b7a4d97c8b7ec6a8d33ab523ab04dd.zip |
vim-patch:9.1.0039: too vague errors for 'listchars'/'fillchars' (#27070)
Problem: too vague errors for 'listchars'/'fillchars'
Solution: Include the field name in error message.
(zeertzjq)
related: #27050
closes: vim/vim#13877
https://github.com/vim/vim/commit/6a8d2e1634f8f0d7463a2786dbcbe0f38dd287a7
Co-authored-by: Cole Frankenhoff <cole.nhf@gmail.com>
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/options.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 9405d73fd0..59ac3b7f34 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -2485,7 +2485,7 @@ A jump table for the options with a short description can be found at |Q_op|. Characters to fill the statuslines, vertical separators and special lines in the window. It is a comma-separated list of items. Each item has a name, a colon - and the value of that item: + and the value of that item: |E1511| item default Used for ~ stl ' ' statusline of the current window @@ -2523,7 +2523,7 @@ A jump table for the options with a short description can be found at |Q_op|. < For the "stl", "stlnc", "foldopen", "foldclose" and "foldsep" items single-byte and multibyte characters are supported. But double-width - characters are not supported. + characters are not supported. |E1512| The highlighting used for these items: item highlight group ~ @@ -3823,7 +3823,7 @@ A jump table for the options with a short description can be found at |Q_op|. 'listchars' 'lcs' string (default "tab:> ,trail:-,nbsp:+") global or local to window |global-local| Strings to use in 'list' mode and for the |:list| command. It is a - comma-separated list of string settings. + comma-separated list of string settings. *E1511* *lcs-eol* eol:c Character to show at the end of each line. When @@ -3902,7 +3902,7 @@ A jump table for the options with a short description can be found at |Q_op|. omitted. The characters ':' and ',' should not be used. UTF-8 characters can - be used. All characters must be single width. + be used. All characters must be single width. *E1512* Each character can be specified as hex: >vim set listchars=eol:\\x24 |