Kugel
Kugel

Reputation: 19844

How do I jump to next reference in Resharper?

When I tried out CodeRush from DevExpress, there was this awesome feature called Tab to next reference.

Is there similar feature in Resharper? I'm using Shift+Alt+F12 to bring up "Uses of" context menu, which is good but slower to work with.

Edit: I asked because google search turned up nothing. Now this question is spot 5 for googling Resharper jump to next reference.

Upvotes: 5

Views: 416

Answers (1)

Ilya Ivanov
Ilya Ivanov

Reputation: 23626

You can use

Ctrl+Shift+Down(Up) - IDEA Shortcut Scheme

Ctrl+Alt+PgDn(PgUp) - Visual Studio Scheme

Also bring short menu of all usages

Ctrl+Alt+F7- IDEA Scheme

Shift+Alt+F12- Visual Studio Scheme

Also

Ctrl+Shift+F7

to highlight usages even if cursor has gone away. In screenshot I have fixed _ninjectKernel and put cursor to module variable. Navigation between usages of _ninjectKernel and module is done by Ctrl+Alt+PgUp (or Up for IDEA scheme )

enter image description here

Upvotes: 8

Related Questions