vimspector/tests/.vimspector.json

21 lines
415 B
JSON

{
"configurations": {
"Run test": {
"adapter": "vim-debug-adapter",
"configuration": {
"request": "launch",
"cwd": "${workspaceRoot}",
"env": {
"VIMSPECTOR_MIMODE": "lldb"
},
"args": [
"--clean",
"--not-a-term",
"-S", "lib/run_test.vim",
"${file}",
"${TestFunction}"
]
}
}
}
}