aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/shared.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2024-05-13 05:00:39 -0700
committerGitHub <noreply@github.com>2024-05-13 05:00:39 -0700
commite3ec974324bd73b63f54503480a4e48d1887f8d9 (patch)
tree077a3b8e7ba869de0b3d1ac6d4bb9407e94f899b /runtime/lua/vim/shared.lua
parentb6fdde5224250ec5dc3d5dcfec32d62a887173ff (diff)
downloadrneovim-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.lua6
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()|