Path: blob/main/src/vs/editor/browser/triggerInlineEditCommandsRegistry.ts
4774 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*--------------------------------------------------------------------------------------------*/45/**6* Registry for commands that can trigger Inline Edits (NES) when invoked.7*/8export abstract class TriggerInlineEditCommandsRegistry {910private static REGISTERED_COMMANDS = new Set<string>();1112public static getRegisteredCommands(): readonly string[] {13return [...TriggerInlineEditCommandsRegistry.REGISTERED_COMMANDS];14}1516public static registerCommand(commandId: string): void {17TriggerInlineEditCommandsRegistry.REGISTERED_COMMANDS.add(commandId);18}19}202122