Resharper equivalent of the "Tab" CodeRush label (go to next / previous use)

I am trying to switch to Resharper from CodeRush and am really struggling with this.

In CodeRush, when you are above a variable / method, etc., if you press Tab , it will go on to the next use. Like VS.NET Ctrl + Shift + Down/up

Is there a way to do this in Resharper? Is there any plugin or way to bind Tab to a similar command in Resharper?

+6
source share
1 answer

ReSharper has this functionality, but only after you find or highlight the use of the / method / etc variable ...

Keyboard shortcuts depend on whether you use Visual Studio or IDEA keyboard mappings (specified in ReSharper -> Options -> Visual Studio Integration -> Keybarod Shortcuts ).

To find ways to use it, press Shift + F12 (Visual Studio) or Alt + F7 (IDEA).

To highlight usage, press Shift + Alt + F11 (Visual Studio) or Ctrl + Shift + F7 (IDEA).

After you have done one of the above, you can proceed to the next use using Ctrl + Alt + FPgDn (Visual Studio) or Ctrl + Alt + Down (IDEA).

This ReSharper help page contains a more complete set of shortcuts.

+5
source

Source: https://habr.com/ru/post/897531/


All Articles