.vimspector.json 451 B

12345678910111213141516171819
  1. {
  2. "$schema": "https://puremourning.github.io/vimspector/schema/vimspector.schema.json",
  3. "configurations": {
  4. "Run vim test": {
  5. "adapter": "vim-debug-adapter",
  6. "configuration": {
  7. "request": "launch",
  8. "cwd": "${workspaceRoot}",
  9. "args": [
  10. "--clean",
  11. "--not-a-term",
  12. "-S", "lib/run_test.vim",
  13. "${TestScriptName}",
  14. "${TestFunction}"
  15. ]
  16. }
  17. }
  18. }
  19. }