PhilChang
PhilChang

Reputation: 2691

pycharm python console autocompletion

if I start ipython in a terminal, when I type 'im' and press TAB, the terminal will auto-complete it with 'import', but when I click python console button in the bottom of pycharm IDE, when the ipython environment shows, type 'im', press TAB, it will not give autocompletion.

In PyCharm, it use pydevconsole.py to create the ipython environment, but I do not know how to change it to enable the autocompletion.

Upvotes: 6

Views: 7142

Answers (2)

NEJ
NEJ

Reputation: 11

ctrl+space confuse with input language switching of Windows. need change setting of Keymap

File -> Setting -> Keymap -> Main menu -> Code -> Complete -> Basic

Upvotes: 1

Yuval Atzmon
Yuval Atzmon

Reputation: 5945

You can use Ctrl+Space for auto completion. See here.

Upvotes: 5

Related Questions