Add the lua adapter to gadgets.py and installer.py, update the README.md file and create basic tests using lua, luajit and love.
17 lines
396 B
JSON
17 lines
396 B
JSON
{
|
|
"$schema": "https://puremourning.github.io/vimspector/schema/vimspector.schema.json#",
|
|
"configurations": {
|
|
"love": {
|
|
"adapter": "lua-local",
|
|
"configuration": {
|
|
"request": "launch",
|
|
"type": "lua-local",
|
|
"cwd": "${workspaceFolder}",
|
|
"program": {
|
|
"command": "love"
|
|
},
|
|
"args": ["${workspaceFolder}"]
|
|
}
|
|
}
|
|
}
|
|
}
|