How to open interactive python console by default?

Viewed 966

When I stop at breakpoint - I can run interactive console in debug mode to see varibles, evaluate simple expressions, etc.

However, this takes a lot of time every time when you need go there and click this small icon to start interactive session.

Is there any way to make this wonderful IDE start python console in interactive mode automatically?

Thanks

2 Answers

To get the console to show by default which I believe is the desired outcome check the Focus on Breakpoints option on the right-click menu from the Console tab:

enter image description here

Related