mirror of
https://github.com/neovim/neovim.git
synced 2024-12-21 19:55:04 -07:00
526fc609b8
An empty table was previously always treated as a list, which means that while merging tables, whenever an empty table was encountered it would always truncate any table on the left. `vim.tbl_deep_extend("force", { b = { a = 1 } }, { b = {} })` Before: `{ b = {} }` After: `{ b = { a = 1 } }` |
||
---|---|---|
.. | ||
api_spec.lua | ||
buffer_updates_spec.lua | ||
command_line_completion_spec.lua | ||
commands_spec.lua | ||
loop_spec.lua | ||
luaeval_spec.lua | ||
overrides_spec.lua | ||
runtime_spec.lua | ||
uri_spec.lua | ||
vim_spec.lua |