Bug 457944 - Add LSP diagnostic code to UI
Summary: Add LSP diagnostic code to UI
Status: RESOLVED FIXED
Alias: None
Product: kate
Classification: Applications
Component: general (show other bugs)
Version: Git
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: KWrite Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-08-16 08:25 UTC by gl.ivanovsky
Modified: 2022-08-21 20:08 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In: 22.12.0
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description gl.ivanovsky 2022-08-16 08:25:01 UTC
SUMMARY

Language server can provide an optional `code` of a diagnostic:
https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#diagnostic
Currently Kate's LSP Client plugin does not expose this information in UI.

However, this information may be useful, at least for `clangd` (https://clangd.llvm.org/) the diagnostic code contains machine-friendly diagnostic code that can be used to suppress a specific diagnostic with a `#pragma clang diagnostic ignored "-Wsomething-something"` for Clang warnings (https://clang.llvm.org/docs/UsersManual.html#controlling-diagnostics-via-pragmas) or with a `// NOLINT(something-something)` comment for Clang Tidy warnings (https://clang.llvm.org/extra/clang-tidy/#suppressing-undesired-diagnostics). Having diagnostic code in UI allows user to easily copy-paste it from LSP tab to source file being edited.

The following patch seems to address the issue (but I've only tested it against `clangd` language server):
```
diff --git a/addons/lspclient/lspclientpluginview.cpp b/addons/lspclient/lspclientpluginview.cpp
index d0acbc9bb..436758d73 100644
--- a/addons/lspclient/lspclientpluginview.cpp
+++ b/addons/lspclient/lspclientpluginview.cpp
@@ -2538,6 +2538,9 @@ public:
             if (diag.source.length()) {
                 source = QStringLiteral("[%1] ").arg(diag.source);
             }
+            if (diag.code.length()) {
+                source += QStringLiteral("(%1) ").arg(diag.code);
+            }
             item->setData(diagnosticsIcon(diag.severity), Qt::DecorationRole);
             // rendering of lines with embedded newlines does not work so well
             // so ... split message by lines
```

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Ubuntu 22.04
KDE Frameworks Version: 5.92.0
Qt Version: 5.15.3

ADDITIONAL INFORMATION
Kate built from source (reports version 22.11.70)
Comment 1 gl.ivanovsky 2022-08-16 12:30:54 UTC
Submitted https://invent.kde.org/utilities/kate/-/merge_requests/839
Comment 2 Christoph Cullmann 2022-08-21 20:08:22 UTC
Thanks for the patch, is merged!