@@ -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' ;
@@ -302,6 +302,8 @@ import { CoreErrorHandler } from './contributions/core-error-handler';
302
302
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
+ import { IndexesUpdateProgress } from './contributions/indexes-update-progress' ;
306
+ import { Daemon } from './contributions/daemon' ;
305
307
306
308
MonacoThemingService . register ( {
307
309
id : 'arduino-theme' ,
@@ -698,6 +700,8 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
698
700
Contribution . configure ( bind , PlotterFrontendContribution ) ;
699
701
Contribution . configure ( bind , Format ) ;
700
702
Contribution . configure ( bind , CompilerErrors ) ;
703
+ Contribution . configure ( bind , IndexesUpdateProgress ) ;
704
+ Contribution . configure ( bind , Daemon ) ;
701
705
702
706
// Disabled the quick-pick customization from Theia when multiple formatters are available.
703
707
// Use the default VS Code behavior, and pick the first one. In the IDE2, clang-format has `exclusive` selectors.
@@ -719,7 +723,7 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
719
723
} ) ;
720
724
721
725
bind ( ResponseService ) . toService ( ResponseServiceImpl ) ;
722
- bind ( ResponseServiceArduino ) . toService ( ResponseServiceImpl ) ;
726
+ bind ( ResponseServiceClient ) . toService ( ResponseServiceImpl ) ;
723
727
724
728
bind ( NotificationCenter ) . toSelf ( ) . inSingletonScope ( ) ;
725
729
bind ( FrontendApplicationContribution ) . toService ( NotificationCenter ) ;
0 commit comments