diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2024-05-13 05:00:39 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-13 05:00:39 -0700 |
commit | e3ec974324bd73b63f54503480a4e48d1887f8d9 (patch) | |
tree | 077a3b8e7ba869de0b3d1ac6d4bb9407e94f899b /runtime/lua/vim/shared.lua | |
parent | b6fdde5224250ec5dc3d5dcfec32d62a887173ff (diff) | |
download | rneovim-e3ec974324bd73b63f54503480a4e48d1887f8d9.tar.gz rneovim-e3ec974324bd73b63f54503480a4e48d1887f8d9.tar.bz2 rneovim-e3ec974324bd73b63f54503480a4e48d1887f8d9.zip |
refactor(lua): remove deprecated features #28725
Diffstat (limited to 'runtime/lua/vim/shared.lua')
-rw-r--r-- | runtime/lua/vim/shared.lua | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/runtime/lua/vim/shared.lua b/runtime/lua/vim/shared.lua index 1c8059adab..4d753d727a 100644 --- a/runtime/lua/vim/shared.lua +++ b/runtime/lua/vim/shared.lua @@ -601,12 +601,6 @@ function vim.spairs(t) t end ---- @deprecated -function vim.tbl_isarray() - vim.deprecate('vim.tbl_isarray', 'vim.isarray', '0.10-dev') - error('vim.tbl_isarray was renamed to vim.isarray') -end - --- Tests if `t` is an "array": a table indexed _only_ by integers (potentially non-contiguous). --- --- If the indexes start from 1 and are contiguous then the array is also a list. |vim.islist()| |