On 3/24/2022 4:16 AM, Jonathan Bressat wrote: > Hello > In contrib/vscode/ the script init.sh create launch.json with the > option "external console" to true but actually this option make gdb > didn't work so we passed to false and then it works. > Is there any reasons why it is set to true, do we not use this properly ? > Then would it be nice to correct it in contrib/vscode and to talk > about it in that doc : https://git-scm.com/docs/MyFirstContribution ? Hi Jonathan and Guillaume, I use VS Code to work on Git (using Remote SSH from a Windows machine to a Linux machine) but I've always used command-line gdb for debugging. However, your request here got me interested. I confirmed that running the debugger from the VS Code UI did not show any output or show that a breakpoint was hit. Performing the update you recommend made the debuggin UI populate with all the necessary info (stack trace, variables, showing the breakpoint line in the editor). Here is a patch that makes the change as you suggest. I tried to research the setting appropriately, so please let me know if there is anything you think is incorrect here. Thanks, -Stolee --- >8 ---