File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
packages/lsp-ws-connection/src Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
1
import * as events from 'events' ;
2
- import { LocationLink } from 'vscode-languageserver-protocol' ;
2
+ import {
3
+ CompletionItemTag ,
4
+ LocationLink
5
+ } from 'vscode-languageserver-protocol' ;
3
6
import * as protocol from 'vscode-languageserver-protocol' ;
4
7
import { ConsoleLogger , listen , MessageConnection } from 'vscode-ws-jsonrpc' ;
5
8
import {
@@ -163,8 +166,11 @@ export class LspWsConnection
163
166
snippetSupport : false ,
164
167
commitCharactersSupport : true ,
165
168
documentationFormat : [ 'markdown' , 'plaintext' ] ,
166
- deprecatedSupport : false ,
167
- preselectSupport : false
169
+ deprecatedSupport : true ,
170
+ preselectSupport : false ,
171
+ tagSupport : {
172
+ valueSet : [ CompletionItemTag . Deprecated ]
173
+ }
168
174
} ,
169
175
contextSupport : false
170
176
} ,
You can’t perform that action at this time.
0 commit comments