vscode-lua
vscode-lua copied to clipboard
function return value type awareness
hi, I enjoyed you plugin a lot. Can it make the following code show autocomplete list?
local tab = {key1 = 2, key2 = 2}
function returnTab()
return tab
end
returnTab().key1 --can this show autocompletion?