Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 5 additions & 19 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,13 @@
"version": "0.2.0",
"configurations": [
{
"name": "Debug Auto-Update",
"name": "Debug Golang",
"type": "go",
"request": "launch",
"console": "integratedTerminal",
// If mode is exec, the debugging process debugs the precompiled executable (specified in `program` below)
// Make sure to use `make build-debug` to compile the debuggable binary before running this config
"mode": "exec",
"env": {
"SLACK_TEST_VERSION": "v1.0.0"
},
"args": ["update", "-v"],
"program": "bin/slack-cli-debug"
},
{
"name": "Debug auth list",
"type": "go",
"request": "launch",
"console": "integratedTerminal",
"mode": "debug",
"args": ["auth", "list", "-v"],
"program": "main.go"
"mode": "auto",
"debugAdapter": "dlv-dap",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🐞 Love this project! It has saved me in some of the more confusing experiments...

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dlv is so good!

"hideSystemGoroutines": true,
"program": "${file}"
}
]
}
Loading