local-lua-debugger-vscode icon indicating copy to clipboard operation
local-lua-debugger-vscode copied to clipboard

lua5.4 supported?

Open laoshaw opened this issue 3 years ago • 1 comments

does this support lua5.4?

laoshaw avatar Feb 25 '23 20:02 laoshaw

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").

sewbacca avatar Jun 04 '23 18:06 sewbacca