Merge pull request #26791 from wookayin/gendoc

refactor(gen_vimdoc): general refactoring on vimdoc generation
This commit is contained in:
Lewis Russell
2024-01-04 12:03:12 +00:00
committed by GitHub
5 changed files with 553 additions and 252 deletions

View File

@@ -581,7 +581,7 @@ function vim.tbl_isarray(t)
local count = 0
for k, _ in pairs(t) do
--- Check if the number k is an integer
-- Check if the number k is an integer
if type(k) == 'number' and k == math.floor(k) then
count = count + 1
else