You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _specifications/lsp/3.18/metaModel/metaModel.json
+24-3Lines changed: 24 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -9159,10 +9159,20 @@
9159
9159
{
9160
9160
"name": "message",
9161
9161
"type": {
9162
-
"kind": "base",
9163
-
"name": "string"
9162
+
"kind": "or",
9163
+
"items": [
9164
+
{
9165
+
"kind": "base",
9166
+
"name": "string"
9167
+
},
9168
+
{
9169
+
"kind": "reference",
9170
+
"name": "MarkupContent"
9171
+
}
9172
+
]
9164
9173
},
9165
-
"documentation": "The diagnostic's message. It usually appears in the user interface"
9174
+
"documentation": "The diagnostic's message. It usually appears in the user interface.\n\n@since 3.18.0 - support for MarkupContent. This is guarded by the client\ncapability `textDocument.diagnostic.markupMessageSupport`.",
9175
+
"since": "3.18.0 - support for MarkupContent. This is guarded by the client\ncapability `textDocument.diagnostic.markupMessageSupport`."
9166
9176
},
9167
9177
{
9168
9178
"name": "tags",
@@ -13384,6 +13394,17 @@
13384
13394
},
13385
13395
"optional": true,
13386
13396
"documentation": "Whether the clients supports related documents for document diagnostic pulls."
13397
+
},
13398
+
{
13399
+
"name": "markupMessageSupport",
13400
+
"type": {
13401
+
"kind": "base",
13402
+
"name": "boolean"
13403
+
},
13404
+
"optional": true,
13405
+
"documentation": "Whether the client supports `MarkupContent` in diagnostic messages.\n\n@since 3.18.0\n@proposed",
0 commit comments