launch.json

This commit is contained in:
2024-07-18 10:22:20 +02:00
parent 056e434f0f
commit 1fe4fbd7d8

21
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,21 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug in VSCode",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "src/",
"args": ["link", "test1", "-d"]
},
{
"name": "Debug in Neovim",
"type": "delve",
"request": "launch",
"program": "${workspaceFolder}/src",
"args": ["link", "test_module", "-d"],
"dlvCwd": "${workspaceFolder}/src",
}
]
}