Danijel
Danijel

Reputation: 8606

PyCharm: how to go back after navigating to some other part of the file?

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

Answers (2)

Dhruv Ramani
Dhruv Ramani

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

dragon2fly
dragon2fly

Reputation: 2419

Ctrl + Alt + left should do the job. Ctrl + Alt + right will navigate forward

Upvotes: 3

Related Questions