Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I jump to next reference in Resharper? [closed]

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.

like image 379
Kugel Avatar asked Feb 17 '23 23:02

Kugel


1 Answers

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

like image 114
Ilya Ivanov Avatar answered Feb 28 '23 07:02

Ilya Ivanov