When the terminal get an error, I click the error message.
But it doesn't jump to the error line. It shows like this.
If I click the "create file", it creates a new file in the workspace directory.
this is my launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "cppbuild",
"type": "cppdbg",
"request": "launch",
"program":"${fileDirname}\\bin\\${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole":false,
"internalConsoleOptions": "neverOpen",
"MIMode": "gdb",
"miDebuggerPath": "E:\\asoftware\\mingw64\\bin\\gdb.exe",
"preLaunchTask": "build"
}]
}