summaryrefslogtreecommitdiff
path: root/mut/neovim/pack/plugins/start/blink.cmp/docs/development/lsp-tracker.md
blob: 5f694170af9771bbaae3d036de4567ccb05674d1 (plain)
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
# LSP Support Tracker

## Completion Items

- [x] `completionItem/resolve`

### Client Capabilities

- [ ] `dynamicRegistration`
- [x] `CompletionItem`
    - [x] `snippetSupport`
    - [ ] `commitCharacterSupport`
    - [x] `documentationFormat`
    - [x] `deprecatedSupport`
    - [ ] `preselectSupport`
    - [x] `tagSupport`
    - [ ] `insertReplaceSupport`
    - [x] `resolveSupport`
    - [x] `insertTextModeSupport`
    - [x] `labelDetailsSupport`
- [x] `completionItemKind`
- [x] `contextSupport`

### Server Capabilities

- [x] `triggerCharacters`
- [ ] `allCommitCharacters`
- [x] `resolveProvider`
- [x] `CompletionItem`
    - [x] `labelDetailsSupport`

### Request Params

- [x] `CompletionContext`
    - [x] `triggerKind`
    - [x] `triggerCharacter`

### List

- [x] `isIncomplete`
- [x] `itemDefaults`
    - [x] `commitCharacters`
    - [x] `editRange`
    - [x] `insertTextFormat`
    - [x] `insertTextMode`
    - [x] `data`
- [x] `items`

### Item

- [x] `label`
- [x] `labelDetails`
- [x] `kind`
- [x] `tags`
- [x] `detail`
- [x] `documentation` <- both string and markup content
- [x] `deprecated`
- [ ] `preselect`
- [x] `sortText`
- [x] `filterText`
- [x] `insertText`
- [x] `insertTextFormat` <- regular or snippet
- [ ] `insertTextMode` <- asIs only, not sure we'll support adjustIndentation
- [x] `textEdit`
- [x] `textEditText`
- [x] `additionalTextEdits` <- known issue where applying the main text edit will cause this to be wrong if the additional text edit comes after since the indices will be offset
- [ ] `commitCharacters`
- [ ] `command`
- [x] `data` <- Don't think there's anything special to do here