Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "lldb Attach Debug",
            "type": "cppdbg",
            "request": "attach",
            "program": "/anaconda3/bin/python",
            "processId": "${command:pickProcess}",
            "MIMode": "lldb"
        },
        {
            "name": "lldb Launch Debug",
            "type": "cppdbg",
            "request": "launch",
            "program": "${file}",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": true,
            "MIMode": "lldb"
        },
        {
            "name": "python Launch Debug",
            "type": "python",
            "request": "launch",
            "stopOnEntry": truefalse,
            "pythonPath": "/anaconda3/bin/python",
            "program": "${file}",
            "cwd": "",
            "console": "none",
            "env": {},
            "envFile": "${workspaceRoot}/.env"
        },

    ]
}

...