Increase paste timeout + add warning. (#13099)

This commit is contained in:
Tommaso Sciortino
2025-11-14 16:02:28 -08:00
committed by GitHub
parent ab6b2293e1
commit d03496b710
5 changed files with 29 additions and 13 deletions

View File

@@ -14,6 +14,7 @@ export enum AppEvent {
Flicker = 'flicker',
McpClientUpdate = 'mcp-client-update',
SelectionWarning = 'selection-warning',
PasteTimeout = 'paste-timeout',
}
export interface AppEvents extends ExtensionEvents {
@@ -23,6 +24,7 @@ export interface AppEvents extends ExtensionEvents {
[AppEvent.Flicker]: never[];
[AppEvent.McpClientUpdate]: Array<Map<string, McpClient> | never>;
[AppEvent.SelectionWarning]: never[];
[AppEvent.PasteTimeout]: never[];
}
export const appEvents = new EventEmitter<AppEvents>();