From e3ec974324bd73b63f54503480a4e48d1887f8d9 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Mon, 13 May 2024 05:00:39 -0700 Subject: refactor(lua): remove deprecated features #28725 --- runtime/lua/vim/shared.lua | 6 ------ 1 file changed, 6 deletions(-) (limited to 'runtime/lua/vim/shared.lua') 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()| -- cgit