File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -29,14 +29,14 @@ documents.listen(connection);
29
29
connection . onInitialize ( ( ) => {
30
30
return {
31
31
capabilities : {
32
- codeActionProvider : true ,
33
- textDocumentSync : {
34
- openClose : true ,
35
- change : TextDocumentSyncKind . Incremental ,
36
- } ,
37
- executeCommandProvider : {
38
- commands : [ 'sample.fixMe' ] ,
39
- } ,
32
+ // codeActionProvider: true,
33
+ // textDocumentSync: {
34
+ // openClose: true,
35
+ // change: TextDocumentSyncKind.Incremental,
36
+ // },
37
+ // executeCommandProvider: {
38
+ // commands: ['sample.fixMe'],
39
+ // },
40
40
} ,
41
41
} ;
42
42
} ) ;
@@ -55,13 +55,13 @@ function validate(document: TextDocument): void {
55
55
} ) ;
56
56
}
57
57
58
- documents . onDidOpen ( ( event ) => {
59
- validate ( event . document ) ;
60
- } ) ;
58
+ // documents.onDidOpen((event) => {
59
+ // validate(event.document);
60
+ // });
61
61
62
- documents . onDidChangeContent ( ( event ) => {
63
- validate ( event . document ) ;
64
- } ) ;
62
+ // documents.onDidChangeContent((event) => {
63
+ // validate(event.document);
64
+ // });
65
65
66
66
// connection.onCodeAction((params) => {
67
67
// const textDocument = documents.get(params.textDocument.uri);
You can’t perform that action at this time.
0 commit comments