I use this configuration and work only if I insert this two line

// "stopOnEntry": true
// "justMyCode": false

{
  "version": "0.2.0",
  "configurations": [
    {
        "name": "Python: Debug Current File",
        "type": "python",
        "request": "launch",
        "program": "${file}",
        "console": "integratedTerminal",
        "stopOnEntry": true,
        "justMyCode": false
    },
  ]
}
Answer from Marco Graziano on Stack Overflow
🌐
Microsoft Learn
learn.microsoft.com › en-us › troubleshoot › developer › visualstudio › debuggers › troubleshooting-breakpoints
Troubleshoot breakpoints in the debugger - Visual Studio | Microsoft Learn
September 17, 2025 - If you deleted a breakpoint while debugging, you may hit the breakpoint again the next time you start debugging. To stop hitting this breakpoint, make sure all the instances of the breakpoint are removed from the Breakpoints window.
Discussions

Debugger not stopping on breakpoints
Hey! I'm having issues similar to microsoft/vscode#103048, wanted to create a new issue so I'm not hijacking threads, it seemed like some people over there were having issues with NPM scrip... More on github.com
🌐 github.com
8
July 26, 2020
python - VSCode: Why isn't debugger stopping at breakpoints? - Stack Overflow
I have just installed VS Code and the Python extension, and I have not been able to get the debugger to work. Every time I try to use the debugger, it just skips over any breakpoints that I have se... More on stackoverflow.com
🌐 stackoverflow.com
VSCode Breakpoint not hitting/stopping when run in debugger mode - Golang
What version of Go, VS Code & VS Code Go extension are you using? Version Information Run go version to get version of Go from the VS Code integrated terminal. go version go1.19 darwin/amd64 Ru... More on github.com
🌐 github.com
27
August 18, 2022
debugging - Why would the debugger not be stopping at a breakpoint in my ASP.NET application? - Stack Overflow
I'm trying to debug a large ASP.NET application. I set a breakpoint on the first line in Page_Load in Default.aspx.cs. When I start the application, my breakpoint briefly turns into a red round o... More on stackoverflow.com
🌐 stackoverflow.com
🌐
Reddit
reddit.com › r/vscode › vs code debug not stopping on breakpoints
r/vscode on Reddit: VS Code debug not stopping on breakpoints
June 10, 2023 -

I'm new to using VS Code as I¡ve always used Eclipse IDE. I'm trying to debug my java file in which I've created a breakpoint, but the debugger just runs the code as if there wasn't such breakpoint..

I've seen some other people struggle with this, so here's my launch.json:

{
    // 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": "Java",
            "type": "java",
            "request": "launch",
            "stopOnEntry": true,
            "jdkPath": "${env:JAVA_HOME}/bin",
            "cwd": "${fileDirname}",
            "startupClass": "${fileBasenameNoExtension}",
            "classpath": [
                ".",
                "${fileDirname}"
            ]
        },
        {
            "name": "Java Console App",
            "type": "java",
            "request": "launch",
            "stopOnEntry": true,
            "jdkPath": "${env:JAVA_HOME}/bin",
            "cwd": "${fileDirname}",
            "startupClass": "${fileBasenameNoExtension}",
            "classpath": [
                ".",
                "${fileDirname}"
            ],
            "externalConsole": true
        },
        {
            "type": "java",
            "name": "Current File",
            "request": "launch",
            "mainClass": "${file}"
        },
        {
            "type": "java",
            "name": "Numeros",
            "request": "launch",
            "mainClass": "Numeros",
            "projectName": "progra_4bad0bd0"
        }
    ]
}

Thanks in advance

🌐
GitHub
github.com › microsoft › vscode-js-debug › issues › 660
Debugger not stopping on breakpoints · Issue #660 · microsoft/vscode-js-debug
July 26, 2020 - bugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable bug ... Hey! I'm having issues similar to microsoft/vscode#103048, wanted to create a new issue so I'm not hijacking threads, it seemed like some people over there were having issues with NPM script arguments which is definitely unrelated for me. Describe the bug When the preview is enabled (now default), no breakpoints, debuggers, or initial breaks are hit.
Author   jonathanrdelgado
🌐
Developer Community
developercommunity.visualstudio.com › t › Program-execution-doesnt-stop-on-breakp › 1494369
Program execution doesn't stop on breakpoints when ...
Skip to main content · Visual Studio · Guidelines Problems Suggestions Code of Conduct · Downloads · Visual Studio IDE Visual Studio Code Azure DevOps Team Foundation Server Accounts and Subscriptions · Subscriber Access · Microsoft Security Azure Dynamics 365 Microsoft 365 Microsoft ...
Find elsewhere
🌐
Johnstonsoftwaresolutions
johnstonsoftwaresolutions.com › 2019 › 05 › 02 › visual-studio-debugger-does-not-stop-on-a-breakpoint
Visual Studio debugger does not stop on a breakpoint – Johnston Software Solutions
February 5, 2023 - Close Visual Studio and re-open it with the matching level of elevation and suddenly your breakpoints will be hit! When I was developing traditional ASP.NET applications on a Windows 7 system, I found that it worked best to always open Visual ...
🌐
GitHub
github.com › golang › vscode-go › issues › 2417
VSCode Breakpoint not hitting/stopping when run in debugger mode - Golang · Issue #2417 · golang/vscode-go
August 18, 2022 - When Start Debugging is fired, the program runs successfully. However the program doesn't stop at breakpoints. Breakpoint is enabled and placed alright.
Author   riderrocks
🌐
Reddit
reddit.com › r/visualstudio › does not stop at breakpoint
r/VisualStudio on Reddit: Does not stop at breakpoint
December 22, 2020 -

Hi,

Does anyone have and idea why VS2019 does not stop at breakpoints? I am quite new to programming and also to VS so I might have made some unintentional settings changes. What are most common settings that disable breakpoint? Or which settings I must have/check to see if breakpoints are enabled.

🌐
GitHub
github.com › microsoft › vscode › issues › 120586
Debugger does not stop on breakpoints (python. VS code) · Issue #120586 · microsoft/vscode
April 5, 2021 - The debugger just goes right over them without stopping. As a test I created an empty folder with only a short python test file, and the debugger went right over the breakpoints. This is running Visual Studio Code (version 1.55.0 user setup) on Windows 10, with python 3.9.
Author   PlanckBrain
🌐
GitHub
github.com › microsoft › vscode-python › issues › 4844
Debugger Doesn't Stop At Breakpoints · Issue #4844 · microsoft/vscode-python
March 20, 2019 - When VSCode is used to debug a Python 3.6 script I anticipate for the execution of the code to stop when a breakpoint is 'hit'.
Author   primalewden
🌐
GitHub
github.com › Microsoft › vscode-cpptools › issues › 2830
Debugger not stopping on breakpoints · Issue #2830 · microsoft/vscode-cpptools
November 15, 2018 - Use the \"file\" command.\n" --> E (output): {"event":"output","body":{"category":"console","output":"1: (1251) ->1011^done,bkpt={number=\"2\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"<PENDING>\",pending=\"hello-world.c:5\",ti...
Author   dsinecos
🌐
Developer Community
developercommunity.visualstudio.com › t › vs2022-does-not-stop-at-breakpoints › 1587557
VS2022 does not stop at breakpoints.
Skip to main content · Visual Studio · Guidelines Problems Suggestions Code of Conduct · Downloads · Visual Studio IDE Visual Studio Code Azure DevOps Team Foundation Server Accounts and Subscriptions · Subscriber Access · Microsoft Security Azure Dynamics 365 Microsoft 365 Microsoft ...
🌐
Stack Overflow
stackoverflow.com › questions › 57696869 › visual-studio-code-debug-doesnt-stop-at-breakpoints
c# - Visual Studio Code debug doesn't stop at breakpoints - Stack Overflow
... Are you connecting to the Debug executable or the Release Executable? Should be using the Debug Executable. ... Possible issue in debug mode may be enabled optimization. ... I have experienced this unusual behaviour in Visual Studio in Debug ...
🌐
GitHub
github.com › microsoft › AL › issues › 7388
Debugger stops at first breakpoint and wont move on in VSCode 1.78 · Issue #7388 · microsoft/AL
May 4, 2023 - Describe the bug Debugger stops at the first breakpoint, but does not allow further navigation within the code. The debugger does not accept any commands to move on: Step over next line (F10) Go to next line (F11) Go to next breakpoint (...
Author   cosmo-skol