location not found
mahdimehrabi opened this issue · 0 comments
mahdimehrabi commented
Hello , thanks for building this amazing tool
my delve server run on docker on address 127.0.0.1 and port 2345 and I use DlvConnect 127.0.0.1:2345
to connect to it but I get this error
here is my configuration on vscode that I use it to connect debugger on container from vscode and it works fine
"version": "0.2.0",
"configurations": [
{
"name": "normal",
"type": "go",
"request": "launch",
"mode": "remote",
"remotePath": "/clean_web",
"port": 2345,
"program": "${workspaceRoot}",
"host": "127.0.0.1",
"showLog": true
},
{
"name": "test",
"type": "go",
"request": "launch",
"mode": "remote",
"remotePath": "/clean_web",
"port": 4000,
"program": "${workspaceRoot}",
"host": "127.0.0.1",
"showLog": true
}
]
as you can see we have two configuration key named remotePath
and program
do we have something like that in this vim-delve ?