File tree Expand file tree Collapse file tree 2 files changed +6
-13
lines changed Expand file tree Collapse file tree 2 files changed +6
-13
lines changed Original file line number Diff line number Diff line change 31
31
"type" : " boolean" ,
32
32
"description" : " Enable/disable the SQL validator" ,
33
33
"default" : false
34
- },
35
- "vscode-db2i.schemas" : {
36
- "type" : " boolean" ,
37
- "description" : " Enable/disable the Schemas tool (preview)" ,
38
- "default" : false
39
34
}
40
35
}
41
36
},
Original file line number Diff line number Diff line change @@ -19,14 +19,12 @@ function activate(context) {
19
19
// This line of code will only be executed once when your extension is activated
20
20
console . log ( `Congratulations, your extension "vscode-db2i" is now active!` ) ;
21
21
22
- if ( Configuration . get ( `schemas` ) ) {
23
- context . subscriptions . push (
24
- vscode . window . registerTreeDataProvider (
25
- `schemaBrowser` ,
26
- new schemaBrowser ( context )
27
- ) ,
28
- ) ;
29
- }
22
+ context . subscriptions . push (
23
+ vscode . window . registerTreeDataProvider (
24
+ `schemaBrowser` ,
25
+ new schemaBrowser ( context )
26
+ ) ,
27
+ ) ;
30
28
31
29
languageProvider . initialise ( context ) ;
32
30
}
You can’t perform that action at this time.
0 commit comments