Reputation: 1071
I've looked in Pycharm documentation for available shortcuts, and could not find the one that i use(d) the most in Visual Studio : Ctrl+Shift + up/down arrows - which moves between instances of variable/function. Am I missing something? Is there any other way to do this? (I'm using Pycharm 4.0.6)
Upvotes: 1
Views: 242
Reputation: 97133
You can use Ctrl-Shift-F7 to highlight the usages of the variable under caret and then use F3/Shift-F3 to navigate between the usages.
Upvotes: 1