File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 22762276 "typeName" : " DidOpenTextDocumentNotification" ,
22772277 "messageDirection" : " clientToServer" ,
22782278 "clientCapability" : " textDocument.synchronization" ,
2279- "serverCapability" : " textDocumentSync" ,
2279+ "serverCapability" : " textDocumentSync.openClose " ,
22802280 "params" : {
22812281 "kind" : " reference" ,
22822282 "name" : " DidOpenTextDocumentParams"
23082308 "typeName" : " DidCloseTextDocumentNotification" ,
23092309 "messageDirection" : " clientToServer" ,
23102310 "clientCapability" : " textDocument.synchronization" ,
2311- "serverCapability" : " textDocumentSync" ,
2311+ "serverCapability" : " textDocumentSync.openClose " ,
23122312 "params" : {
23132313 "kind" : " reference" ,
23142314 "name" : " DidCloseTextDocumentParams"
Original file line number Diff line number Diff line change @@ -1965,7 +1965,7 @@ export namespace DidOpenTextDocumentNotification {
19651965 export const method : 'textDocument/didOpen' = 'textDocument/didOpen' ;
19661966 export const messageDirection : MessageDirection = MessageDirection . clientToServer ;
19671967 export const type = new ProtocolNotificationType < DidOpenTextDocumentParams , TextDocumentRegistrationOptions > ( method ) ;
1968- export const capabilities = CM . create ( 'textDocument.synchronization' , 'textDocumentSync' ) ;
1968+ export const capabilities = CM . create ( 'textDocument.synchronization' , 'textDocumentSync.openClose ' ) ;
19691969}
19701970
19711971/**
@@ -2099,7 +2099,7 @@ export namespace DidCloseTextDocumentNotification {
20992099 export const method : 'textDocument/didClose' = 'textDocument/didClose' ;
21002100 export const messageDirection : MessageDirection = MessageDirection . clientToServer ;
21012101 export const type = new ProtocolNotificationType < DidCloseTextDocumentParams , TextDocumentRegistrationOptions > ( method ) ;
2102- export const capabilities = CM . create ( 'textDocument.synchronization' , 'textDocumentSync' ) ;
2102+ export const capabilities = CM . create ( 'textDocument.synchronization' , 'textDocumentSync.openClose ' ) ;
21032103}
21042104
21052105/**
You can’t perform that action at this time.
0 commit comments