1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-13 02:05:40 +08:00

fix(toml): fix E706

This commit is contained in:
wsdjeg 2023-08-05 22:20:03 +08:00 committed by Eric Wong
parent 78121cbb29
commit b6da4a2ffc

View File

@ -103,6 +103,7 @@ function! s:_parse(input) abort
call s:_error(a:input)
endif
call s:_skip(a:input)
unlet keys value
endwhile
return data
@ -283,6 +284,7 @@ function! s:_table(input) abort
let value = s:_value(a:input)
call s:_put_dict(tbl, keys, value)
call s:_skip(a:input)
unlet keys value
endwhile
return [name, tbl]
endfunction