0

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.

Danijel
  • 8,198
  • 18
  • 69
  • 133
  • Does this answer your question? [How to go back in PyCharm while browsing code like we have a back button in eclipse?](https://stackoverflow.com/questions/24548398/how-to-go-back-in-pycharm-while-browsing-code-like-we-have-a-back-button-in-ecli) – user985366 Jun 05 '23 at 12:50

2 Answers2

3

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

dragon2fly
  • 2,309
  • 19
  • 23
0

Use Alt+Up/Alt+Down keyboard shortcuts. More info here: https://www.jetbrains.com/pycharm/help/navigating-between-methods-and-tags.html

Dhruv Ramani
  • 2,633
  • 2
  • 22
  • 29