intellij-ideapycharm

Is there an equivalent to VS Code's quick open (Ctrl+P) in JetBrains IDEs?


One of my favorite features in VS Code is the ability to search and open files by hitting Ctrl+P, typing the name of the file I'm looking for, and then hit Enter when it is the top suggestion to open it. It's super convenient.

I can't seem to find anything like it in JetBrains PyCharm. Does it have an equivalent function? If so, how do I activate it?


Solution

  • Yes:

    Ctrl+N: finds a class by name.

    Ctrl+Shift+N: finds any file or directory by name (supports CamelCase and snake_case).

    More info: https://www.jetbrains.com/help/pycharm/searching-everywhere.html