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: protocol/metaModel.json
+41
Original file line number
Diff line number
Diff line change
@@ -243,6 +243,17 @@
243
243
},
244
244
"documentation": "A request to provide folding ranges in a document. The request's\nparameter is of type {@link FoldingRangeParams}, the\nresponse is of type {@link FoldingRangeList} or a Thenable\nthat resolves to such."
245
245
},
246
+
{
247
+
"method": "workspace/foldingRange/refresh",
248
+
"result": {
249
+
"kind": "base",
250
+
"name": "null"
251
+
},
252
+
"messageDirection": "serverToClient",
253
+
"documentation": "@since 3.18.0\n@proposed",
254
+
"since": "3.18.0",
255
+
"proposed": true
256
+
},
246
257
{
247
258
"method": "textDocument/declaration",
248
259
"result": {
@@ -10670,6 +10681,17 @@
10670
10681
"optional": true,
10671
10682
"documentation": "Capabilities specific to the diagnostic requests scoped to the\nworkspace.\n\n@since 3.17.0.",
10672
10683
"since": "3.17.0."
10684
+
},
10685
+
{
10686
+
"name": "foldingRange",
10687
+
"type": {
10688
+
"kind": "reference",
10689
+
"name": "FoldingRangeWorkspaceClientCapabilities"
10690
+
},
10691
+
"optional": true,
10692
+
"documentation": "Capabilities specific to the folding range requests scoped to the workspace.\n\n@since 3.18.0\n@proposed",
10693
+
"since": "3.18.0",
10694
+
"proposed": true
10673
10695
}
10674
10696
],
10675
10697
"documentation": "Workspace specific client capabilities."
@@ -11489,6 +11511,25 @@
11489
11511
"documentation": "Workspace client capabilities specific to diagnostic pull requests.\n\n@since 3.17.0",
"documentation": "Whether the client implementation supports a refresh request sent from the\nserver to the client.\n\nNote that this event is global and will force the client to refresh all\nfolding ranges currently shown. It should be used with absolute care and is\nuseful for situation where a server for example detects a project wide\nchange that requires such a calculation.\n\n@since 3.18.0\n@proposed",
11525
+
"since": "3.18.0",
11526
+
"proposed": true
11527
+
}
11528
+
],
11529
+
"documentation": "Client workspace capabilities specific to folding ranges\n\n@since 3.18.0\n@proposed",
0 commit comments