diff options
author | ii14 <59243201+ii14@users.noreply.github.com> | 2022-09-07 17:59:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-07 17:59:27 +0200 |
commit | 4dc4cf346755375e49410e16635c00a602b26c36 (patch) | |
tree | 520d672ffe9710b80e857e3ff66f1d60feeee948 /runtime/lua/vim/_meta.lua | |
parent | 9d1d3a67073ab04f29a1e437e90faede764a4313 (diff) | |
download | rneovim-4dc4cf346755375e49410e16635c00a602b26c36.tar.gz rneovim-4dc4cf346755375e49410e16635c00a602b26c36.tar.bz2 rneovim-4dc4cf346755375e49410e16635c00a602b26c36.zip |
fix(options): mark `winhighlight` as list style (#19477)
Also add missing fcs, lcs and winhighlight to list of key-value options for `vim.opt`.
Co-authored-by: ii14 <ii14@users.noreply.github.com>
Diffstat (limited to 'runtime/lua/vim/_meta.lua')
-rw-r--r-- | runtime/lua/vim/_meta.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/lua/vim/_meta.lua b/runtime/lua/vim/_meta.lua index f1652718ee..0f45c916dc 100644 --- a/runtime/lua/vim/_meta.lua +++ b/runtime/lua/vim/_meta.lua @@ -198,7 +198,10 @@ end -- Can be done in a separate PR. local key_value_options = { fillchars = true, + fcs = true, listchars = true, + lcs = true, + winhighlight = true, winhl = true, } |