Reputation: 8606
How do I go back after navigating to some other part of the py file? For example, I use F12 to go to function definition, but I don't see a way to go back? I am using Alt + <
and Alt + >
in Eclipse and Visual Studio.
Upvotes: 0
Views: 576
Reputation: 2643
Use Alt+Up/Alt+Down keyboard shortcuts. More info here: https://www.jetbrains.com/pycharm/help/navigating-between-methods-and-tags.html
Upvotes: 0
Reputation: 2419
Ctrl + Alt + left should do the job. Ctrl + Alt + right will navigate forward
Upvotes: 3