timedout
timedout

Reputation: 551

How to go back in PyCharm while browsing code like we have a back button in eclipse?

While browsing the code in PyCharm(community edition) how to go back to the previously browsed section? I am looking for eclipse back button type functionality with Pycharm.

Upvotes: 41

Views: 23025

Answers (6)

Lalaphoon
Lalaphoon

Reputation: 369

Able to enable Forward/Back button on latest pycharm.

Right-click the toolbar and select Add to Main Toolbar and select Back/Forward

enter image description here

Reference is from : https://intellij-support.jetbrains.com/hc/en-us/community/posts/13224717402002-Where-did-the-forward-and-back-buttons-go-in-the-new-PyCharm-layout-

Upvotes: 2

Keval
Keval

Reputation: 773

In Ubuntu:

Navigate back

Shift + Alt + Left Arrow

Navigate forward

Shift + Alt + Right Arrow

enter image description here

In Windows:

Navigate back / forward

Ctrl + Alt + Left / Right Arrow

In MAC:

Navigate back / forward

Cmd + Alt + Left Arrow

Upvotes: 3

Ubuntu 16.04 defines Ctrl + Alt + Left as a workspace switch shortcut

Then it does nothing on Pycharm.

So you have to either disable the Ubuntu shortcut with:

  • dash
  • keyboard
  • shortcuts
  • navigation

or redefine the PyCharm shortcuts to something else.

Linux distro desktop devs: please make all desktop system wide shortcuts contain the Super key.

Upvotes: 9

arbulgazar
arbulgazar

Reputation: 1973

You could use Ctrl+Alt+Left Arrow (which is more convenient from my point of view) or clicking arrows as suggested.

Upvotes: 34

Ammon
Ammon

Reputation: 319

You can also go to Navigate->Back

navigate back in PyCharm

Upvotes: 8

sundar nataraj
sundar nataraj

Reputation: 8702

in pycharm you have view in view please make sure that toolbar is checked enter image description here

enter image description here

Upvotes: 67

Related Questions