forked from microsoft/language-server-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspecification-3-16-toc.yml
More file actions
268 lines (268 loc) · 7.64 KB
/
specification-3-16-toc.yml
File metadata and controls
268 lines (268 loc) · 7.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
- title: Message Overview
reveal: baseProtocol
children:
- title: Base Protocol
anchor: baseProtocol
children:
- title: Header Part
anchor: headerPart
- title: Content Part
anchor: contentPart
- title: Request Message
anchor: requestMessage
- title: Response Message
anchor: responseMessage
- title: Notification Message
anchor: notificationMessage
- title: $/cancelRequest
anchor: cancelRequest
- title: $/progress
anchor: progress
- title: Basic Structures
anchor: dataTypes
children:
- title: URI
anchor: uri
- title: Regular Expression
anchor: regExp
- title: Text Documents
anchor: textDocuments
- title: Position
anchor: position
- title: Range
anchor: range
- title: Location
anchor: location
- title: Location Link
anchor: locationLink
- title: Diagnostic
anchor: diagnostic
- title: Command
anchor: command
- title: Text Edit
anchor: textEdit
- title: Text Document Edit
anchor: textDocumentEdit
- title: File Resource Changes
anchor: resourceChanges
- title: Workspace Edit
anchor: workspaceEdit
- title: Text Document Identifier
anchor: textDocumentIdentifier
- title: Text Document Item
anchor: textDocumentItem
- title: Versioned Text Document Identifier
anchor: versionedTextDocumentIdentifier
- title: Text Document Position Params
anchor: textDocumentPositionParams
- title: Document Filter
anchor: documentFilter
- title: Static Registration Options
anchor: staticRegistrationOptions
- title: Text Document Registration Options
anchor: textDocumentRegistrationOptions
- title: Markup Content
anchor: markupContent
- title: Work Done Progress
anchor: workDoneProgress
- title: Client Initiated Progress
anchor: clientInitiatedProgress
- title: Server Initiated Progress
anchor: serverInitiatedProgress
- title: Partial Results
anchor: partialResults
- title: Partial Result Params
anchor: partialResultParams
- title: Trace Value
anchor: traceValue
- title: General Messages
anchor: general
children:
- title: initialize
anchor: initialize
- title: initialized
anchor: initialized
- title: shutdown
anchor: shutdown
- title: exit
anchor: exit
- title: logTrace
anchor: logTrace
- title: setTrace
anchor: setTrace
- title: Window
anchor: window
children:
- title: showMessage
anchor: window_showMessage
- title: showMessageRequest
anchor: window_showMessageRequest
- title: showDocument
anchor: window_showDocument
- title: logMessage
anchor: window_logMessage
- title: progress/create
anchor: window_workDoneProgress_create
- title: progress/cancel
anchor: window_workDoneProgress_cancel
- title: Telemetry
anchor: telemetry
children:
- title: event
anchor: telemetry_event
- title: Client
anchor: client
children:
- title: registerCapability
anchor: client_registerCapability
- title: unregisterCapability
anchor: client_unregisterCapability
- title: Workspace
anchor: workspace
children:
- title: workspaceFolders
anchor: workspace_workspaceFolders
- title: didChangeWorkspaceFolders
anchor: workspace_didChangeWorkspaceFolders
- title: didChangeConfiguration
anchor: workspace_didChangeConfiguration
- title: configuration
anchor: workspace_configuration
- title: didChangeWatchedFiles
anchor: workspace_didChangeWatchedFiles
- title: symbol
anchor: workspace_symbol
- title: executeCommand
anchor: workspace_executeCommand
- title: applyEdit
anchor: workspace_applyEdit
- title: file operations events
anchor: workspace_willCreateFiles
- title: Text Synchronization
anchor: textSynchronization
children:
- title: General Capabilities
anchor: textDocument_synchronization
- title: didOpen
anchor: textDocument_didOpen
- title: didChange
anchor: textDocument_didChange
- title: willSave
anchor: textDocument_willSave
- title: willSaveWaitUntil
anchor: textDocument_willSaveWaitUntil
- title: didSave
anchor: textDocument_didSave
- title: didClose
anchor: textDocument_didClose
- title: Diagnostics
anchor: diagnostics
children:
- title: publishDiagnostics
anchor: textDocument_publishDiagnostics
- title: Language Features
anchor: languageFeatures
children:
- title: completion
anchor: textDocument_completion
- title: completion resolve
anchor: completionItem_resolve
- title: hover
anchor: textDocument_hover
- title: signatureHelp
anchor: textDocument_signatureHelp
- title: declaration
anchor: textDocument_declaration
- title: definition
anchor: textDocument_definition
- title: typeDefinition
anchor: textDocument_typeDefinition
- title: implementation
anchor: textDocument_implementation
- title: references
anchor: textDocument_references
- title: documentHighlight
anchor: textDocument_documentHighlight
- title: documentSymbol
anchor: textDocument_documentSymbol
- title: codeAction
anchor: textDocument_codeAction
- title: codeAction resolve
anchor: codeAction_resolve
- title: codeLens
anchor: textDocument_codeLens
- title: codeLens resolve
anchor: codeLens_resolve
- title: codeLens refresh
anchor: codeLens_refresh
- title: documentLink
anchor: textDocument_documentLink
- title: documentLink resolve
anchor: documentLink_resolve
- title: documentColor
anchor: textDocument_documentColor
- title: colorPresentation
anchor: textDocument_colorPresentation
- title: formatting
anchor: textDocument_formatting
- title: rangeFormatting
anchor: textDocument_rangeFormatting
- title: onTypeFormatting
anchor: textDocument_onTypeFormatting
- title: rename
anchor: textDocument_rename
- title: prepareRename
anchor: textDocument_prepareRename
- title: foldingRange
anchor: textDocument_foldingRange
- title: selectionRange
anchor: textDocument_selectionRange
- title: prepareCallHierarchy
anchor: textDocument_prepareCallHierarchy
- title: callHierarchy incoming
anchor: callHierarchy_incomingCalls
- title: callHierarchy outgoing
anchor: callHierarchy_outgoingCalls
- title: semantic tokens
anchor: textDocument_semanticTokens
- title: linkedEditingRange
anchor: textDocument_linkedEditingRange
- title: moniker
anchor: textDocument_moniker
- title: Change Log
anchor: changeLog
children:
- title: 3.16.0
anchor: version_3_16_0
- title: 3.15.0
anchor: version_3_15_0
- title: 3.14.0
anchor: version_3_14_0
- title: 3.13.0
anchor: version_3_13_0
- title: 3.12.0
anchor: version_3_12_0
- title: 3.11.0
anchor: version_3_11_0
- title: 3.10.0
anchor: version_3_10_0
- title: 3.9.0
anchor: version_3_9_0
- title: 3.8.0
anchor: version_3_8_0
- title: 3.7.0
anchor: version_3_7_0
- title: 3.6.0
anchor: version_3_6_0
- title: 3.5.0
anchor: version_3_5_0
- title: 3.4.0
anchor: version_3_4_0
- title: 3.3.0
anchor: version_3_3_0
- title: 3.2.0
anchor: version_3_2_0
- title: 3.1.0
anchor: version_3_1_0
- title: 3.0
anchor: version_3_0_0