Path: blob/main/src/vs/editor/browser/services/contribution.ts
4777 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { registerSingleton, InstantiationType } from '../../../platform/instantiation/common/extensions.js';6import { IEditorWorkerService } from '../../common/services/editorWorker.js';7import { EditorWorkerService } from './editorWorkerService.js';89registerSingleton(IEditorWorkerService, EditorWorkerService, InstantiationType.Eager /* registers link detection and word based suggestions for any document */);101112