diff options
author | Matthieu Coudron <mattator@gmail.com> | 2018-02-09 08:44:24 +0900 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-02-23 00:48:35 +0100 |
commit | 384a39479a0b70abf9cd6ced0b5f1d53cd817c11 (patch) | |
tree | e55c16d1a7d134b091e11df06e36025cc8dd8288 /runtime | |
parent | 0c930c2969a8c7cce49382d0acb83e165644af41 (diff) | |
download | rneovim-384a39479a0b70abf9cd6ced0b5f1d53cd817c11.tar.gz rneovim-384a39479a0b70abf9cd6ced0b5f1d53cd817c11.tar.bz2 rneovim-384a39479a0b70abf9cd6ced0b5f1d53cd817c11.zip |
'fillchars': fix defaults logic; handle ambiwidth=double #7986
Update tests.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 0345960b0d..fbc055ddd5 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -2377,7 +2377,7 @@ A jump table for the options with a short description can be found at |Q_op|. Only normal file name characters can be used, "/\*?[|<>" are illegal. *'fillchars'* *'fcs'* -'fillchars' 'fcs' string (default "vert:│,fold:·") +'fillchars' 'fcs' string (default "") global {not available when compiled without the |+windows| and |+folding| features} @@ -2387,14 +2387,17 @@ A jump table for the options with a short description can be found at |Q_op|. item default Used for ~ stl:c ' ' or '^' statusline of the current window stlnc:c ' ' or '=' statusline of the non-current windows - vert:c '│' vertical separators |:vsplit| - fold:c '·' filling 'foldtext' + vert:c '│' or '|' vertical separators |:vsplit| + fold:c '·' or '-' filling 'foldtext' diff:c '-' deleted lines of the 'diff' option 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 '=' otherwise. + If 'ambiwidth' is "double" then "vert" and "fold" default to + single-byte alternatives. + Example: > :set fillchars=stl:^,stlnc:=,vert:│,fold:·,diff:- < This is similar to the default, except that these characters will also |