Favorite PyCharm Hotkeys!

Adrienne Domingus
4 min readJul 28, 2018

When I started working at a new company and working in Django, I was using PyCharm for the first time, and had a workflow established in a different IDE. Reestablishing muscle memory around different hotkeys is definitely a challenge, and I find that I often only get around to looking things up in a fit of frustration/inefficiency. So in an effort to possibly help you avoid some of that, or just to show you a fun new shortcut you didn’t even know you should look up, here are just a few of my favorites (by no means an exhaustive list)! (These assume you’re working on a mac).

First, a legend:

  • ⌘: command
  • ⌥: option
  • ⇧: shift
  • ⌃: control

⌘-⌥-o: enter symbol

This one is cool, and I tend to find that other people (my sample size is small — making up only my own team, but still) aren’t aware of it. I’m frequently looking for a given method, but can’t remember if it’s in utils.py or directly in views.py or…well. If you know what your method is called, you can use this hotkey to find it! It can also be used on constant definitions.

⌘-⇧-o: Open file

This one is just what it sounds like — it allows you to search for a file by name/path without having to find it in the project directory. It’s worth noting that you don’t need to type the complete file names or paths for PyCharm to find you what you’re looking for.

--

--