Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to navigate to "next issue" within a project?

Is there a command to navigate to a next problem in a whole project but in a file. It happens all the time that you have an error somewhere and you need to trace your project in a Project View to find it.

How cool would it be to navigate where you need just right away!

Update: Not only compilation errors count, but also syntax.

like image 978
Eugene Avatar asked May 07 '15 16:05

Eugene


2 Answers

You can use "Analyze"->"Inspect Code". It will shows all issues in the whole project.

like image 156
covernal Avatar answered Sep 20 '22 20:09

covernal


CTRL + F9 (Make Project). This will also automatically scroll to your first error in the project. It will give you a list of your errors and you can then use CTRL + ALT + DOWN to go through the errors.

Also once you fix them, you can do the shortcut again as it might reveal more (compilation) issues that were hidden by the first ones.

like image 34
SDekov Avatar answered Sep 21 '22 20:09

SDekov