aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorii14 <59243201+ii14@users.noreply.github.com>2022-09-07 17:59:27 +0200
committerGitHub <noreply@github.com>2022-09-07 17:59:27 +0200
commit4dc4cf346755375e49410e16635c00a602b26c36 (patch)
tree520d672ffe9710b80e857e3ff66f1d60feeee948 /src
parent9d1d3a67073ab04f29a1e437e90faede764a4313 (diff)
downloadrneovim-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 'src')
-rw-r--r--src/nvim/options.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua
index 49adf03aa0..1d9a821e20 100644
--- a/src/nvim/options.lua
+++ b/src/nvim/options.lua
@@ -2868,7 +2868,8 @@ return {
{
full_name='winhighlight', abbreviation='winhl',
short_desc=N_("Setup window-local highlights");
- type='string', scope={'window'},
+ type='string', list='onecomma', scope={'window'},
+ deny_duplicates=true,
alloced=true,
redraw={'current_window'},
defaults={if_true=""}