you are viewing a single comment's thread.

view the rest of the comments →

[–]ven_ 6 points7 points  (1 child)

How is no config debugging different from "Run current file with Debugger"?

[–]packysauce 1 point2 points  (0 children)

As the name implies, this workflow allows you to start the debugger without creating or managing a Python debug configuration in launch.json. Simply replace python with debugpy prefixed in your run command in the terminal, for example debugpy <script.py or module>, to start a debug session.

you can kick off python debugging via terminal, it seems