-
Notifications
You must be signed in to change notification settings - Fork 413
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
Add extendedClientCapability to exclude diagnostics based on IMarker API #2524
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We also collect JDT problem markers at https://github.com/eclipse/eclipse.jdt.ls/blob/57432947f5fe74ca43bd80079fc75614f5ebc8a7/org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/handlers/BaseDiagnosticsHandler.java#L67 . These are triggered when a Java source file is opened/changed. Should they also be excluded ?
Also more generally, I noticed that Diagnostic
can store a source
and tags
. Would it help if we just marked the ones coming directly from Eclipse as such, so you could filter directly on client side without needing the special property ?
So far, those IProblems have not caused issues in my IDE. I suspect they aren't immediately diagnostics.
It could, but at the moment LSP4E doesn't allow to filter diagnostics. But I'll think more about it and come back to you. We may actually be able to skip diagnostics in general in LSP4E is a marker already exists with the same description... I'm realizing that the current approach that just skips the diagnostic when it comes from marker makes that we probably miss the codeActions to resolve this marker... So I believe we do need both markers in the IDE: the marker from the workspace or JDT (to get Eclipse marker resolution used for this particular marker) and the diagnostic from the LS (to get the codeActions). I need to think a bit more about it... I'm converting it to draft. |
Alright. I just looked at There's also |
One other possibility would be to exclude some particular markers from being forwarded: allow to exclude some marker types with a clientCapability. {
"excludedMarkerTypes": { "org.eclipse.lsp4e.diagnostics" }
} and in the code, we could place some |
This implements the proposal described above, allowing to skip some marker types in some clients (eg type |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. I'll just need to document at https://github.com/eclipse/eclipse.jdt.ls/wiki/Language-Server-Settings-&-Capabilities#extended-client-capabilities after merging.
org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/preferences/ClientPreferences.java
Outdated
Show resolved
Hide resolved
retest this please. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change looks good to me, so I'll merge it.
Whoops, looks like the 3 test failures in |
OK, and what do you prefer: we make the |
Let's just preserve the mutable behaviour for now. |
OK, latest patch should restore mutable lists. |
Another thing I noticed. You supported the exclusion list for |
Great. Once #2538 is good, I can merge+rebase. |
Thanks. I didn't notice an issue with this particular method so far, but I suspect it's because I never fall in the case of JDT-LS sending project markers. Still, it's more consistent and correct to filter there as well, and I'm almost certain that the same bug could have happened in eclipseide-jdtls with this method. |
Based on markerType
No description provided.