Resharper Keyboard shortcut Go to next issue and display and fix issue?

Is there a keyboard shortcut to use in ReSharper to see suggestions and apply them? When I inspect code issues in a Solution, I find it slow to use the mouse to move from one issue/recommendation to the next, and see each suggestion.

I'd like to know a shortcuts for:

  1. Navigating to the next issue/suggestion
  2. Display possible fixes and apply them.

Solution 1:

You could use:

  1. Go to next issue or suggestion Alt + PgDown.

  2. Display possible fixes and apply them Alt + Enter. Once to see possible fixes twice to apply them.

You can also refer to the default ReSharper keymap (Visual Studio scheme) for more keyboard shortcuts.

Solution 2:

Tools | Options | Environment | Keyboard

Search for ReSharper.ReSharper_GotoNextErrorInSolution and ReSharper.ReSharper_GotoNextHighlight and give them whatever shortcut you like. Cesar is correct with the Alt + Enter solution (ReSharper_QuickFix). Also, the navigation shortcuts he mentions are ReSharper.ReSharper_GotoNextOccurence and ReSharper.ReSharper_GotoPreviousOccurence, though those last two seem best suited for the results of Find Usages, etc.

Solution 3:

To go to the next error in the entire solution: Shift + Alt + PgDown

To go to previous error in the entire solution: Shift + Alt + PgUp

This will save you from opening each files individually.