-
-
Notifications
You must be signed in to change notification settings - Fork 399
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The user is not guided to the error line when an error is encountered after verifying/uploading the sketch #608
Comments
The Java IDE parses the output of the compiler to get the line number: The most valuable parts are:
https://github.com/arduino/Arduino/blob/master/arduino-core/src/cc/arduino/Compiler.java#L137 |
Upstream issue: eclipse-theia/theia#11284. |
Closes #608 Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
Closes #608 Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
Describe the bug
If an error is encountered when trying to compile or upload, in code editor the user is not guided to the line of code where the first encountered error is located. This is annoying especially when dealing with long code or multiple .ino tab, because the user is not sure on where the error is located, making it difficult to spot and troubleshoot it.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
When an error is encountered trying to compile or upload In code editor I expect to be brought with the cursor to the first error found in the workspace.
Screenshots
Actual behaviour - IDE 2 beta12
Expected (Java IDE legacy behaviour)
Desktop (please complete the following information):
Additional context
This behavior was consolidated in Java IDE.
The text was updated successfully, but these errors were encountered: