Open laoshaw opened 1 year ago
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"
).
does this support lua5.4?