Add config for bash to tests

This commit is contained in:
Ben Jackson 2021-08-20 11:17:05 +01:00
commit 7c7e3f9c3f

View file

@ -0,0 +1,15 @@
{
"$schema": "https://puremourning.github.io/vimspector/schema/vimspector.schema.json",
"configurations": {
"Run Current Script": {
"adapter": "vscode-bash",
"autoselect": false,
"configuration": {
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"args": [ "*${args}" ]
}
}
}
}