diff --git a/src/vs/workbench/browser/parts/editor/editorStatus.ts b/src/vs/workbench/browser/parts/editor/editorStatus.ts index 2f4fa0904ed7cdfbb7028ae2e8d4c24b826e5711..60c0783a48f6cdace67fc15faf3f2c7ba3211398 100644 --- a/src/vs/workbench/browser/parts/editor/editorStatus.ts +++ b/src/vs/workbench/browser/parts/editor/editorStatus.ts @@ -681,7 +681,7 @@ export class ChangeModeAction extends Action { const action = this.instantiationService.createInstance(OpenGlobalSettingsAction, OpenGlobalSettingsAction.ID, OpenGlobalSettingsAction.LABEL); action.run().done(() => action.dispose(), errors.onUnexpectedError); - this.messageService.show(Severity.Info, nls.localize('persistFileAssociations', "You can configure filename to language associations in the **files.associations** section")); + this.messageService.show(Severity.Info, nls.localize('persistFileAssociations', "You can configure filename to language associations in the **files.associations** section. The changes may need a restart to take effect on already opened files.")); } else { mode = this.modeService.getOrCreateModeByLanguageName(language.label); }