How to make PyKharm Project Files window display class / method names

Today my company IT department installed a bunch of system updates on my Windows machine and in the process they blew out the PyCharm IDE memory of my projects and everything related to them. (This is PyCharm CE v4.5.1.)

I rebuilt the project I'm currently working on and (so far) a couple of its launch configurations. However, the PyCharm project files window no longer displays the classes and methods defined in each file. I've relied heavily on this feature for navigation and I can't seem to find a procedure to restore it. Any suggestions?

+3


source to share


1 answer


I found that I can get the Project window to display classes and methods (and functions outside of classes) like this:

  • Select the "Project (not project files)" option from the left-most drop-down menu.
  • Select Show Participants from the Tools drop-down list (six).


The name "Show Members" threw me off because I'm not used to thinking about files that have "members". However, it does the job.

+6


source







All Articles