diff options
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 6 | ||||
-rw-r--r-- | runtime/doc/vim_diff.txt | 4 | ||||
-rw-r--r-- | runtime/lua/vim/_meta/options.lua | 4 |
3 files changed, 3 insertions, 11 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index b2a020cf9d..d92e528214 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -2521,10 +2521,8 @@ A jump table for the options with a short description can be found at |Q_op|. 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 - be used when there is highlighting. - + :set fillchars=stl:\ ,stlnc:\ ,vert:│,fold:·,diff:- +< For the "stl", "stlnc", "foldopen", "foldclose" and "foldsep" items single-byte and multibyte characters are supported. But double-width characters are not supported. diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt index efebf46d85..1e12ccd7cc 100644 --- a/runtime/doc/vim_diff.txt +++ b/runtime/doc/vim_diff.txt @@ -550,10 +550,6 @@ Vimscript compatibility: `shell_error` does not alias to |v:shell_error| `this_session` does not alias to |v:this_session| -UI/Display: - 'statusline' always uses the "stl" and "stlnc" fields of 'fillchars', even - if they are the same and |hl-StatusLine| and |hl-StatusLineNC| are equal. - Working directory (Vim implemented some of these after Nvim): - |DirChanged| and |DirChangedPre| can be triggered when switching to another window or tab. diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua index a986cd752c..53f7166b3d 100644 --- a/runtime/lua/vim/_meta/options.lua +++ b/runtime/lua/vim/_meta/options.lua @@ -2217,10 +2217,8 @@ vim.bo.ft = vim.bo.filetype --- --- Example: --- ``` ---- :set fillchars=stl:^,stlnc:=,vert:│,fold:·,diff:- +--- :set fillchars=stl:\ ,stlnc:\ ,vert:│,fold:·,diff:- --- ``` ---- This is similar to the default, except that these characters will also ---- be used when there is highlighting. --- --- For the "stl", "stlnc", "foldopen", "foldclose" and "foldsep" items --- single-byte and multibyte characters are supported. But double-width |