Pierson Lee

Results 58 comments of Pierson Lee

@drew-512 this is the C++ extension. If you are asking for VS Code to support it for Go, you will need to ask either [VS Code](https://github.com/microsoft/vscode/issues) or the Go extension...

@elias-1 Can you share your `launch.json` config? You will need to specify the `MIMode` as `gdb` and then set the `miDebuggerPath` to your gdb location but otherwise it should be...

@HorstBaerbel We haven't implemented Launch without Debugging. I'll mark this as a feature request but you may either do it as @agauniyal suggested with a batch file or from the...

@roachsinai We haven't done work enable that scenario and we haven't shipped an extension update since 0.20.1 which shipped a few months back. Did you apply a VS Code update?

@polyclash @xgdgsc for now you can use the VS Code Terminal window to launch your application from the command line.

This sounds like #4133. Are you able to change your `ptrace_scope` value?

That can be the work around for now. I think with `pkexec` allowing selection of profiles to elevate to needs some more investigation.

@NathanLabott Can you show me your task.json? The build task support is through VSCode itself and not part of this extension but I can take a look and see if...

@NathanLabott What OS are you using? If it is Linux, try `g++` but also specify the `-g` option

Can you change the following? `"command": "g++"` `"args": ["-g", "main.cpp", "-o", ""]` **NOTE: Please replace with your executable name** and then put the executable name inside your `"program"` path for...