diff options
author | sigmaSd | 2022-12-02 01:18:45 +0000 |
---|---|---|
committer | GitHub | 2022-12-02 01:18:45 +0000 |
commit | 4960c41f18d93e8b4c48a7c4e96f00d948cfad5f (patch) | |
tree | 95864333284c1511f5c8a2e2a001e917f96f9e17 /helix-term | |
parent | 8291654326e0e5ff14830bfade72178b622a9f3c (diff) |
feat(lsp): add support for lsp Diagnostic{}.data (#4935)
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/application.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index dc12ba3c..7a50e007 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -772,7 +772,8 @@ impl Application { severity, code, tags, - source: diagnostic.source.clone() + source: diagnostic.source.clone(), + data: diagnostic.data.clone(), }) }) .collect(); |