Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 448
Eloff Avatar asked Mar 04 '23 03:03

Eloff


1 Answers

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

like image 108
streetturtle Avatar answered Mar 10 '23 12:03

streetturtle