diff options
author | tj-moody <92702993+tj-moody@users.noreply.github.com> | 2023-09-23 22:49:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-24 10:49:47 +0800 |
commit | 046c9a83f7ed2694c19d915a63ef0dfed9d29dc5 (patch) | |
tree | 91959929052c4b4922095954678220e3480f6dcd /runtime/lua/vim/_meta/options.lua | |
parent | cfb898cd8a42ff2262c96a12919a3cacef9d2973 (diff) | |
download | rneovim-046c9a83f7ed2694c19d915a63ef0dfed9d29dc5.tar.gz rneovim-046c9a83f7ed2694c19d915a63ef0dfed9d29dc5.tar.bz2 rneovim-046c9a83f7ed2694c19d915a63ef0dfed9d29dc5.zip |
fix(ui): always use stl/stlnc fillchars when drawing statusline (#25267)
Diffstat (limited to 'runtime/lua/vim/_meta/options.lua')
-rw-r--r-- | runtime/lua/vim/_meta/options.lua | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua index baf53c5ccc..f8a51da9b5 100644 --- a/runtime/lua/vim/_meta/options.lua +++ b/runtime/lua/vim/_meta/options.lua @@ -2181,8 +2181,8 @@ vim.bo.ft = vim.bo.filetype --- and the value of that item: --- --- item default Used for ~ ---- stl ' ' or '^' statusline of the current window ---- stlnc ' ' or '=' statusline of the non-current windows +--- stl ' ' statusline of the current window +--- stlnc ' ' statusline of the non-current windows --- wbr ' ' window bar --- horiz '─' or '-' horizontal separators `:split` --- horizup '┴' or '-' upwards facing horizontal separator @@ -2201,9 +2201,7 @@ vim.bo.ft = vim.bo.filetype --- 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 '=' ---- otherwise. +--- Any one that is omitted will fall back to the default. --- --- Note that "horiz", "horizup", "horizdown", "vertleft", "vertright" and --- "verthoriz" are only used when 'laststatus' is 3, since only vertical |