File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -52,8 +52,12 @@ export async function activateAsync(context: vscode.ExtensionContext): Promise<v
52
52
( ) => undefined
53
53
) ;
54
54
} ,
55
- } ) ,
55
+ } )
56
+ ) ;
57
+
58
+ await languageClientManger . refresh ( ) ;
56
59
60
+ context . subscriptions . push (
57
61
vscode . workspace . onDidChangeConfiguration ( async ( event ) => {
58
62
for ( const s of [
59
63
"robotcode.python" ,
@@ -71,8 +75,6 @@ export async function activateAsync(context: vscode.ExtensionContext): Promise<v
71
75
}
72
76
} )
73
77
) ;
74
-
75
- await languageClientManger . refresh ( ) ;
76
78
}
77
79
78
80
function displayProgress < R > ( promise : Promise < R > ) : Thenable < R > {
Original file line number Diff line number Diff line change @@ -154,7 +154,6 @@ export class TestControllerManager {
154
154
}
155
155
}
156
156
} ) ,
157
-
158
157
vscode . debug . onDidReceiveDebugSessionCustomEvent ( ( event ) => {
159
158
if ( event . session . configuration . type === "robotcode" ) {
160
159
switch ( event . event ) {
You can’t perform that action at this time.
0 commit comments