diff options
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index c6d96f8..7c6001b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -243,5 +243,24 @@ "${workspaceFolder}/src/data/proto/txtrec-testdata" ], "console": "integratedTerminal" }, + { + "name": "yamlls", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/src/proone-yamlls", + "args": [ + "-o", + "-a", + "${workspaceFolder}/src/data/yaml/prne_yaml-test.yaml", + ], + "stopAtEntry": false, + "cwd": "${workspaceFolder}", + "environment": [], + "externalConsole": false, + "MIMode": "gdb", + "setupCommands": [], + "preLaunchTask": "Build yamlls", + "miDebuggerPath": "/usr/bin/gdb" + }, ] } |