neovim/test/functional/lua
Folke Lemaitre 526fc609b8
fix(shared): do not treat empty tables as list in deep extend (#15094)
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 } }`
2021-07-19 08:52:44 -07:00
..
api_spec.lua API: include invalid buffer/window/tabpage in error message (#11712) 2020-01-14 09:21:10 +01:00
buffer_updates_spec.lua Manually zero out deleted_bytes2 when substituting and joining lines 2021-06-29 00:48:24 -07:00
command_line_completion_spec.lua lint 2021-01-26 17:09:35 -08:00
commands_spec.lua test/vim.validate(): assert normalized stacktrace 2020-10-05 09:47:59 -04:00
loop_spec.lua lua: add vim.in_fast_event() to check if we are in a luv callback 2019-08-05 13:57:24 +02:00
luaeval_spec.lua test/vim.validate(): assert normalized stacktrace 2020-10-05 09:47:59 -04:00
overrides_spec.lua fixup! startup: handle autoload and lua packages during startup 2020-11-02 22:37:07 -05:00
runtime_spec.lua refactor(tests): Simplify tests at functional/lua/runtime_spec 2021-06-11 01:01:03 +06:00
uri_spec.lua feat(vim.uri): Allow URI schemes other than file: without authority 2021-07-10 18:27:37 +01:00
vim_spec.lua fix(shared): do not treat empty tables as list in deep extend (#15094) 2021-07-19 08:52:44 -07:00