@@ -2,35 +2,37 @@ function ServerCapabilities(client::ClientCapabilities)
22 prepareSupport = ! ismissing (client. textDocument) && ! ismissing (client. textDocument. rename) && client. textDocument. rename. prepareSupport === true
33
44 ServerCapabilities (
5- TextDocumentSyncOptions (true ,
6- TextDocumentSyncKinds. Full,
7- false ,
8- false ,
9- SaveOptions (true )),
10- CompletionOptions (false , [" ." , " @" , " \" " , " ^" ], missing ),
11- true ,
12- SignatureHelpOptions ([" (" , " ," ], missing ),
13- false ,
14- true ,
15- false ,
16- false ,
17- true ,
18- true ,
19- true ,
20- true ,
21- missing ,
22- missing ,
23- false ,
24- true ,
25- true ,
26- missing ,
27- RenameOptions (missing , prepareSupport),
28- false ,
29- ExecuteCommandOptions (missing , collect (keys (LSActions))),
30- true ,
31- true ,
32- WorkspaceOptions (WorkspaceFoldersOptions (true , true )),
33- missing )
5+ TextDocumentSyncOptions (true ,
6+ TextDocumentSyncKinds. Full,
7+ false ,
8+ false ,
9+ SaveOptions (true )
10+ ),
11+ CompletionOptions (false , [" ." , " @" , " \" " , " ^" ], missing ),
12+ true ,
13+ SignatureHelpOptions ([" (" , " ," ], missing ),
14+ false ,
15+ true ,
16+ false ,
17+ false ,
18+ true ,
19+ true ,
20+ true ,
21+ true ,
22+ missing ,
23+ DocumentLinkOptions (false , missing ),
24+ false ,
25+ true ,
26+ true ,
27+ missing ,
28+ RenameOptions (missing , prepareSupport),
29+ false ,
30+ ExecuteCommandOptions (missing , collect (keys (LSActions))),
31+ true ,
32+ true ,
33+ WorkspaceOptions (WorkspaceFoldersOptions (true , true )),
34+ missing
35+ )
3436
3537end
3638
0 commit comments