redhat-developer / lsp4ij

LSP Client for IntelliJ
Eclipse Public License 2.0
48 stars 9 forks source link

Render diagnostic tag "unnecessary" #355

Closed CppCXY closed 2 weeks ago

CppCXY commented 2 weeks ago

When rendering diagnostics in VS Code, if the 'tag' field of the diagnostic includes 'unnecessary', the color will be lightened. In JetBrains, it will be grayed out, but here it is underlined.

in vscode: image

in lsp4ij: image

angelozerr commented 2 weeks ago

I created a PR https://github.com/redhat-developer/lsp4ij/pull/357 to support that.

CppCXY commented 2 weeks ago

Thanks!