@@ -24,6 +24,8 @@ import { ProblemContribution as TheiaProblemContribution } from '@theia/markers/
24
24
import { ProblemContribution } from './theia/markers/problem-contribution' ;
25
25
import { FileNavigatorContribution } from './theia/navigator/navigator-contribution' ;
26
26
import { FileNavigatorContribution as TheiaFileNavigatorContribution } from '@theia/navigator/lib/browser/navigator-contribution' ;
27
+ import { KeymapsFrontendContribution } from './theia/keymaps/keymaps-frontend-contribution' ;
28
+ import { KeymapsFrontendContribution as TheiaKeymapsFrontendContribution } from '@theia/keymaps/lib/browser/keymaps-frontend-contribution' ;
27
29
import { ArduinoToolbarContribution } from './toolbar/arduino-toolbar-contribution' ;
28
30
import { EditorContribution as TheiaEditorContribution } from '@theia/editor/lib/browser/editor-contribution' ;
29
31
import { EditorContribution } from './theia/editor/editor-contribution' ;
@@ -278,6 +280,7 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
278
280
rebind ( TheiaOutlineViewContribution ) . to ( OutlineViewContribution ) . inSingletonScope ( ) ;
279
281
rebind ( TheiaProblemContribution ) . to ( ProblemContribution ) . inSingletonScope ( ) ;
280
282
rebind ( TheiaFileNavigatorContribution ) . to ( FileNavigatorContribution ) . inSingletonScope ( ) ;
283
+ rebind ( TheiaKeymapsFrontendContribution ) . to ( KeymapsFrontendContribution ) . inSingletonScope ( ) ;
281
284
rebind ( TheiaEditorContribution ) . to ( EditorContribution ) . inSingletonScope ( ) ;
282
285
rebind ( TheiaMonacoStatusBarContribution ) . to ( MonacoStatusBarContribution ) . inSingletonScope ( ) ;
283
286
rebind ( TheiaApplicationShell ) . to ( ApplicationShell ) . inSingletonScope ( ) ;
@@ -424,6 +427,6 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
424
427
bind ( SettingsWidget ) . toSelf ( ) . inSingletonScope ( ) ;
425
428
bind ( SettingsDialog ) . toSelf ( ) . inSingletonScope ( ) ;
426
429
bind ( SettingsDialogProps ) . toConstantValue ( {
427
- title : 'Preferences '
430
+ title : 'Settings '
428
431
} ) ;
429
432
} ) ;
0 commit comments