How to turn off the "Special Variables" window in Python Console of PyCharm?

Viewed 3583

I use Python console in PyCharm, when running the code, there is a "Special Variables" window appears on the right hand side of Python Console, how can I permanently turn it off?

2 Answers

File > Settings > Build, Execution, Development > Console

Then uncheck the box "Show console variables by default". Apply, Ok, then close your current console and reopen it.

enter image description here

File > Settings > Build, Execution, Development > Console

Related