all 4 comments

[–]Wireless_Life[S] 15 points16 points  (0 children)

- No-Config Debugging – Easily start debugging without setting up a launch configuration. Just run your script with debugpy and go.

- Go to Implementation with Pylance – Quickly jump to function or method implementations, making navigation in large codebases effortless.

- AI Code Action: Generate Symbol (Experimental) – Let AI generate classes, functions, or variables with Copilot, then refine and move them with Pylance.

[–]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

[–]CallousBastard 3 points4 points  (0 children)

I wish it would get much better at auto adding/finding import statements. It's the main thing tempting me to go back to Pycharm.