Search code examples
intellij-ideapycharm

Is there an equivalent to vscode's quick open (ctrl+P) in JetBrains IDEs


One of my favorite features in vscode is hitting ctrl+P, start typing the name of the file I'm looking for, and then hit enter when it's the top suggestion to open it. It's super convenient.

I can't seem to find anything like it in JetBrains PyCharm.


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