comparison runtime/doc/options.txt @ 23932:4549133c1e77 v8.2.2508

patch 8.2.2508: cannot change the character displayed in non existing lines Commit: https://github.com/vim/vim/commit/a98f8a230596d8fb44cc68321de72980a21428cb Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 13 18:24:23 2021 +0100 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 https://github.com/vim/vim/issues/7832, closes https://github.com/vim/vim/issues/3820)
author Bram Moolenaar <Bram@vim.org>
date Sat, 13 Feb 2021 18:30:03 +0100
parents 5b37a0bf7e3a
children 44be09b25619
comparison
equal deleted inserted replaced
23931:5b37a0bf7e3a 23932:4549133c1e77
3233 This option is not copied to another buffer, independent of the 's' or 3233 This option is not copied to another buffer, independent of the 's' or
3234 'S' flag in 'cpoptions'. 3234 'S' flag in 'cpoptions'.
3235 Only normal file name characters can be used, "/\*?[|<>" are illegal. 3235 Only normal file name characters can be used, "/\*?[|<>" are illegal.
3236 3236
3237 *'fillchars'* *'fcs'* 3237 *'fillchars'* *'fcs'*
3238 'fillchars' 'fcs' string (default "vert:|,fold:-") 3238 'fillchars' 'fcs' string (default "vert:|,fold:-,eob:~")
3239 global 3239 global
3240 {not available when compiled without the |+folding| 3240 {not available when compiled without the |+folding|
3241 feature} 3241 feature}
3242 Characters to fill the statuslines and vertical separators. 3242 Characters to fill the statuslines and vertical separators.
3243 It is a comma separated list of items: 3243 It is a comma separated list of items:
3246 stl:c ' ' or '^' statusline of the current window 3246 stl:c ' ' or '^' statusline of the current window
3247 stlnc:c ' ' or '=' statusline of the non-current windows 3247 stlnc:c ' ' or '=' statusline of the non-current windows
3248 vert:c '|' vertical separators |:vsplit| 3248 vert:c '|' vertical separators |:vsplit|
3249 fold:c '-' filling 'foldtext' 3249 fold:c '-' filling 'foldtext'
3250 diff:c '-' deleted lines of the 'diff' option 3250 diff:c '-' deleted lines of the 'diff' option
3251 eob:c '~' empty lines below the end of a buffer
3251 3252
3252 Any one that is omitted will fall back to the default. For "stl" and 3253 Any one that is omitted will fall back to the default. For "stl" and
3253 "stlnc" the space will be used when there is highlighting, '^' or '=' 3254 "stlnc" the space will be used when there is highlighting, '^' or '='
3254 otherwise. 3255 otherwise.
3255 3256
3265 stl:c StatusLine |hl-StatusLine| 3266 stl:c StatusLine |hl-StatusLine|
3266 stlnc:c StatusLineNC |hl-StatusLineNC| 3267 stlnc:c StatusLineNC |hl-StatusLineNC|
3267 vert:c VertSplit |hl-VertSplit| 3268 vert:c VertSplit |hl-VertSplit|
3268 fold:c Folded |hl-Folded| 3269 fold:c Folded |hl-Folded|
3269 diff:c DiffDelete |hl-DiffDelete| 3270 diff:c DiffDelete |hl-DiffDelete|
3271 eob:c EndOfBuffer |hl-EndOfBuffer|
3270 3272
3271 *'fixendofline'* *'fixeol'* *'nofixendofline'* *'nofixeol'* 3273 *'fixendofline'* *'fixeol'* *'nofixendofline'* *'nofixeol'*
3272 'fixendofline' 'fixeol' boolean (default on) 3274 'fixendofline' 'fixeol' boolean (default on)
3273 local to buffer 3275 local to buffer
3274 When writing a file and this option is on, <EOL> at the end of file 3276 When writing a file and this option is on, <EOL> at the end of file