Files
neovim/runtime/lua/vim/_core
Juan Pablo Briones f4f1149292 fix(options): vim.opt fails for 'fillchars' #37141
Problem:
When `to_vim_value[info.metatype](info, value)` is called, a list value
such as `{'eob:a'}` is treated like a map, which generates `1:eob:a`.

Note: commands like `:lua vim.opt.wildmode={'longest:full'}` are not an
issue because only cases harcoded in `key_value_options` have metatype `map`.

Solution:
Check for array type and use the same logic as in array metatypes.
2026-03-18 19:19:47 -04:00
..
2026-03-18 20:40:20 +01:00
2026-01-23 09:30:37 +01:00
2026-03-11 18:17:46 +01:00