awesomewm.d.tl/.vscode/launch.json

29 lines
559 B
JSON
Raw Permalink Normal View History

2022-06-26 17:37:53 +02:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "lua-local",
"request": "launch",
"program": {
"command": "just"
},
"args": ["run"],
"scriptFiles": ["${workspaceFolder}/**/*.tl"]
},
{
"name": "Debug specs",
"type": "lua-local",
"request": "launch",
"program": {
"command": "just"
},
2023-05-14 13:04:45 +02:00
"args": [
"test",
"_spec" // Adapt to the spec to debug
],
"scriptFiles": ["${workspaceFolder}/**/*.tl"]
2022-06-26 17:37:53 +02:00
}
]
}