4

Using Jetbrains rider on Linux. The shortcut to go to the next warning is F2 (the yellow ones) and that's very productive in refactoring existing code.

However, how do I go to the next suggestion (the green ones)? Haven't been able to figure this out from the Official Rider Keymap Reference hence the question.

alok
  • 1,218
  • 1
  • 12
  • 29

2 Answers2

2

On Mac, you can do this with fn + option + Down Arrow, or option + Page Down, if you prefer.

enter image description here

tarrball
  • 2,123
  • 3
  • 23
  • 34
0

Right-click the code analysis indicator, and select "Go to next problem" (source). This should allow navigating to code issues with the "Warning" severity level.

Jura Gorohovsky
  • 9,886
  • 40
  • 46
  • Thanks, but for some reason it still doesn't focus unused code (gray out) nor warnings (yellow zigzag underline). Might be something to report to Jetbrains anyway. I noticed the doc is for IDEA so it may differ slightly, but that's still odd. – hsandt Mar 22 '22 at 19:11