Help needed to debug go gin project #71
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
NeonXP/nvim-dap-go#71
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi, I need you help to add a configuration to run gin project. I want to run "$ go run ." Is there anyway to run custom commands(like the config we can create in launch.json in vscode).
Sorry for the noob question, I'm new to neovim and any help is really appreciated.
Doesn't the
debug packageconfiguration work for you? I believe what it does is rungo build .then starting the resulting executable, basically whatgo run .does under the hood.@h-tiwari-dev
go runisn't a good way to debug Go code and it doesn't publish the necessary symbols. Prefer usinggo buildwhenever possible.This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.