nvim-dap-go icon indicating copy to clipboard operation
nvim-dap-go copied to clipboard

An extension for nvim-dap providing configurations for launching go debugger (delve) and debugging individual tests

Results 24 nvim-dap-go issues
Sort by recently updated
recently updated
newest added

Hi @leoluz and thanks for this very nice project! 👋 I've been having a lot of issues with neotest-go and I've also felt that it was really difficult to try...

Hi, i want to load my custom config bellow ``` dap.adapters.custom = { type = "server", host = "127.0.0.1", port = 2345, } ``` but the plugins only support the...

https://github.com/leoluz/nvim-dap-go/issues/83

Currently the Delve port can be defined either randomly or hard-coded by hand. Hard-coded port allows to know which port to use in remote debug configurations, but in practice with...

I have a use case where I need to set up an environment variable only when debugging tests. We're using Temporal and for it not to timeout it needs a...

This PR adds a `extra_debug_opts` configuration to setup that allows passing extra arguments for the `debug_test()` launch configuration. Fixes #76

Say I have this test structure: ```go func TestSomeFunction(t *testing.T) { tests := []struct { name string }{ { name: "first test", }, { name: "second test", }, { name:...

I apologize if this is documented somewhere, but I have not been able to find it. I have a project that is developed locally with docker compose, and there are...