fix(utils): fix deprecated function

This commit is contained in:
2024-08-09 02:38:39 +02:00
parent b8b0cd97e7
commit 19c8bba6ac
+1 -1
View File
@@ -321,7 +321,7 @@ end
---@param t? type
---@return boolean
function M.is_list(val, t)
if not vim.tbl_islist(val) then
if not vim.islist(val) then
return false
end