Mike
Mike

Reputation: 1071

Pycharm: Is there key shortcut for moving between instances of variable/function?

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

Answers (1)

yole
yole

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

Related Questions