@@ -164,7 +164,7 @@ import { MonacoTextModelService } from './theia/monaco/monaco-text-model-service
164
164
import { ResponseServiceImpl } from './response-service-impl' ;
165
165
import {
166
166
ResponseService ,
167
- ResponseServiceArduino ,
167
+ ResponseServiceClient ,
168
168
ResponseServicePath ,
169
169
} from '../common/protocol/response-service' ;
170
170
import { NotificationCenter } from './notification-center' ;
@@ -303,6 +303,8 @@ import { CompilerErrors } from './contributions/compiler-errors';
303
303
import { WidgetManager } from './theia/core/widget-manager' ;
304
304
import { WidgetManager as TheiaWidgetManager } from '@theia/core/lib/browser/widget-manager' ;
305
305
import { StartupTask } from './widgets/sketchbook/startup-task' ;
306
+ import { IndexesUpdateProgress } from './contributions/indexes-update-progress' ;
307
+ import { Daemon } from './contributions/daemon' ;
306
308
307
309
MonacoThemingService . register ( {
308
310
id : 'arduino-theme' ,
@@ -700,6 +702,8 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
700
702
Contribution . configure ( bind , Format ) ;
701
703
Contribution . configure ( bind , CompilerErrors ) ;
702
704
Contribution . configure ( bind , StartupTask ) ;
705
+ Contribution . configure ( bind , IndexesUpdateProgress ) ;
706
+ Contribution . configure ( bind , Daemon ) ;
703
707
704
708
// Disabled the quick-pick customization from Theia when multiple formatters are available.
705
709
// Use the default VS Code behavior, and pick the first one. In the IDE2, clang-format has `exclusive` selectors.
@@ -721,7 +725,7 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
721
725
} ) ;
722
726
723
727
bind ( ResponseService ) . toService ( ResponseServiceImpl ) ;
724
- bind ( ResponseServiceArduino ) . toService ( ResponseServiceImpl ) ;
728
+ bind ( ResponseServiceClient ) . toService ( ResponseServiceImpl ) ;
725
729
726
730
bind ( NotificationCenter ) . toSelf ( ) . inSingletonScope ( ) ;
727
731
bind ( FrontendApplicationContribution ) . toService ( NotificationCenter ) ;
0 commit comments