"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
}
]
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:2345to connect to it but I get this errorhere is my configuration on vscode that I use it to connect debugger on container from vscode and it works fine
as you can see we have two configuration key named
remotePathandprogramdo we have something like that in this vim-delve ?