@@ -32,14 +32,14 @@ export function activate(context: vscode.ExtensionContext) {
32
32
) ;
33
33
if ( ! ctx . newLanguageServer ) {
34
34
javaExecutablePath = findJava ( ) ;
35
- context . subscriptions . push ( vscode . workspace . onDidChangeConfiguration ( onDidChangeConfiguration , null , context . subscriptions ) ) ;
36
- context . subscriptions . push ( vscode . workspace . onDidChangeTextDocument ( onDidChangeTextDocument , null , context . subscriptions ) ) ;
37
- context . subscriptions . push ( vscode . window . onDidChangeActiveTextEditor ( onDidChangeActiveTextEditor , null , context . subscriptions ) ) ;
38
- context . subscriptions . push ( vscode . commands . registerCommand ( "emmy.restartServer" , restartServer ) ) ;
39
- context . subscriptions . push ( vscode . commands . registerCommand ( "emmy.showReferences" , showReferences ) ) ;
40
- context . subscriptions . push ( vscode . commands . registerCommand ( "emmy.insertEmmyDebugCode" , insertEmmyDebugCode ) ) ;
41
- context . subscriptions . push ( vscode . commands . registerCommand ( "emmy.stopServer" , stopServer ) ) ;
42
35
}
36
+ context . subscriptions . push ( vscode . workspace . onDidChangeConfiguration ( onDidChangeConfiguration , null , context . subscriptions ) ) ;
37
+ context . subscriptions . push ( vscode . workspace . onDidChangeTextDocument ( onDidChangeTextDocument , null , context . subscriptions ) ) ;
38
+ context . subscriptions . push ( vscode . window . onDidChangeActiveTextEditor ( onDidChangeActiveTextEditor , null , context . subscriptions ) ) ;
39
+ context . subscriptions . push ( vscode . commands . registerCommand ( "emmy.restartServer" , restartServer ) ) ;
40
+ context . subscriptions . push ( vscode . commands . registerCommand ( "emmy.showReferences" , showReferences ) ) ;
41
+ context . subscriptions . push ( vscode . commands . registerCommand ( "emmy.insertEmmyDebugCode" , insertEmmyDebugCode ) ) ;
42
+ context . subscriptions . push ( vscode . commands . registerCommand ( "emmy.stopServer" , stopServer ) ) ;
43
43
44
44
context . subscriptions . push ( vscode . languages . setLanguageConfiguration ( "lua" , new LuaLanguageConfiguration ( ) ) ) ;
45
45
0 commit comments