mirror of
https://github.com/microsoft/language-server-protocol.git
synced 2025-12-23 08:48:16 +00:00
Add some missing linkable types
This commit is contained in:
parent
df7ab35c61
commit
135521f210
2 changed files with 19 additions and 1 deletions
|
|
@ -6,6 +6,12 @@
|
|||
link: '#uinteger'
|
||||
- type: 'decimal'
|
||||
link: '#decimal'
|
||||
- type: 'LSPAny'
|
||||
link: '#lspAny'
|
||||
- type: 'LSPObject'
|
||||
link: '#lspObject'
|
||||
- type: 'LSPArray'
|
||||
link: '#lspArray'
|
||||
- type: 'Message'
|
||||
link: '#message'
|
||||
- type: 'RequestMessage'
|
||||
|
|
@ -140,6 +146,8 @@
|
|||
link: '#initializeResult'
|
||||
- type: 'InitializedParams'
|
||||
link: '#initialized'
|
||||
- type: 'InitializeErrorCodes'
|
||||
link: '#initializeErrorCodes'
|
||||
- type: 'InitializeError'
|
||||
link: '#initializeError'
|
||||
- type: 'TextDocumentClientCapabilities'
|
||||
|
|
@ -240,6 +248,8 @@
|
|||
link: '#workspace_applyEdit'
|
||||
- type: 'ApplyWorkspaceEditParams'
|
||||
link: '#applyWorkspaceEditParams'
|
||||
- type: 'ApplyWorkspaceEditResult'
|
||||
link: '#applyWorkspaceEditResult'
|
||||
- type: 'ApplyWorkspaceEditResponse'
|
||||
link: '#applyWorkspaceEditResponse'
|
||||
- type: 'workspace/willCreateFiles'
|
||||
|
|
@ -444,6 +454,8 @@
|
|||
link: '#referenceContext'
|
||||
- type: 'textDocument/documentHighlight'
|
||||
link: '#textDocument_documentHighlight'
|
||||
- type: 'DocumentHighlightClientCapabilities'
|
||||
link: '#documentHighlightClientCapabilities'
|
||||
- type: 'DocumentHighlightOptions'
|
||||
link: '#documentHighlightOptions'
|
||||
- type: 'DocumentHighlightRegistrationOptions'
|
||||
|
|
@ -486,6 +498,8 @@
|
|||
link: '#codeActionKind'
|
||||
- type: 'CodeActionContext'
|
||||
link: '#codeActionContext'
|
||||
- type: 'CodeActionTriggerKind'
|
||||
link: '#codeActionTriggerKind'
|
||||
- type: 'CodeAction'
|
||||
link: '#codeAction'
|
||||
- type: 'codeAction/resolve'
|
||||
|
|
@ -594,6 +608,8 @@
|
|||
link: '#prepareRenameParams'
|
||||
- type: 'textDocument/foldingRange'
|
||||
link: '#textDocument_foldingRange'
|
||||
- type: 'FoldingRangeClientCapabilities'
|
||||
link: '#foldingRangeClientCapabilities'
|
||||
- type: 'FoldingRangeOptions'
|
||||
link: '#foldingRangeOptions'
|
||||
- type: 'FoldingRangeRegistrationOptions'
|
||||
|
|
|
|||
|
|
@ -567,7 +567,7 @@ interface InitializeResult {
|
|||
```
|
||||
* error.code:
|
||||
|
||||
<div class="anchorHolder"><a href="#initializeError" name="initializeError" class="linkableAnchor"></a></div>
|
||||
<div class="anchorHolder"><a href="#initializeErrorCodes" name="initializeErrorCodes" class="linkableAnchor"></a></div>
|
||||
|
||||
```typescript
|
||||
/**
|
||||
|
|
@ -590,6 +590,8 @@ export type InitializeErrorCodes = 1;
|
|||
|
||||
* error.data:
|
||||
|
||||
<div class="anchorHolder"><a href="#initializeError" name="initializeError" class="linkableAnchor"></a></div>
|
||||
|
||||
```typescript
|
||||
interface InitializeError {
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue