Chris Dutrow
Chris Dutrow

Reputation: 50362

Auto-complete with Pycharm without typing a letter or character first

Is there something I can press on the keyboard to get Pycharm to auto-complete without my first having to type a letter?

The purpose of this is so I can see all the possibilities as opposed to only the ones that start with the letter that I typed, or if I don't know what any of the possibilities are to begin with.

Example:

enter image description here

Upvotes: 2

Views: 791

Answers (1)

CrazyCoder
CrazyCoder

Reputation: 401945

You can trigger different types of completion from the menu Code → Completion or using the corresponding keyboard shortcuts (depend on keymap):

Default completion shortcuts:

  • Basic: Ctrl+Space
  • SmartType: Ctrl+Shift+Space
  • Class Name: Ctrl+Alt+Space

Completion types in PyCharm

Upvotes: 4

Related Questions