local-lua-debugger-vscode
local-lua-debugger-vscode copied to clipboard
lua5.4 supported?
does this support lua5.4?
Yeah sure. You can select the lua interpreter version in the launch.json
{
"name": "Launch File",
"type": "lua-local",
"request": "launch",
"program": {
"file": "${file}",
"lua": "lua"
},
}
lua should be in PATH. I use lua5.4 by default, you may need to adjust the attribute (e.g. "lua": "lua54").