Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to turn off code completion in debugging console in pycharm?

Pycharm code completion is fine in code editor, but rather slow in debugger console. It always hangs for quite a while (up to minutes) after typed in the first letter after a variable of sort (say pandas dataframe).

Is there a way to turn that off in debugger console only? I know it can be turned off completely in settings, but what I want is to turn off in debugger console only, as it works pretty well in code editor.

like image 916
liang Avatar asked Sep 15 '25 12:09

liang


1 Answers

There's an option in 2018.2 EAP to switch variable loading policy to "On-demand". This should fix the console slowness in the first place:

enter image description here

like image 122
Pavel Karateev Avatar answered Sep 18 '25 09:09

Pavel Karateev