Home > Net >  Exclude or prioritize suggestions in PyCharm code completion?
Exclude or prioritize suggestions in PyCharm code completion?

Time:10-08

How do i exclude or decrease priority for certain suggestions? i use self most inside a method. But i always have to type self fully because PyCharm keeps suggesting select from ..\DLLs\select.pyd. I've never used or imported select in my project.

Similarly, I want return to be top priority instead of re from regular expressions module. (re module is not used in my project). My question may be linked to these question:

  • Related