Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

is there any documentation for vscode's launch.json? What I found is out of date/missing

https://code.visualstudio.com/docs/editor/debugging#_launch-configurations

For example it all uses node not c/c++ which seems to have some different options. I see things like "processId": "${command:pickProcess}", but I don't see any documentation for what other things you could use command for. Can you have a command that picks your executable? Or do you have to have configurations for each executable you might want to debug?

like image 469
joem Avatar asked Nov 08 '22 13:11

joem


1 Answers

I hit the same issue and find this thread, VS Code updated the lanuch.json attributes docs here: https://code.visualstudio.com/docs/editor/debugging#_launchjson-attributes

like image 200
Jingfu Wang Avatar answered Nov 17 '22 07:11

Jingfu Wang