diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index 9cdd172e61b5b981cadb43b1c2e0b94add5c88fc..2ceafc877effe6e64da9a8383f1c88dce726e7ee 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -4713,6 +4713,11 @@ declare module 'vscode' { * Controls whether to show the "Terminal will be reused by tasks, press any key to close it" message. */ showReuseMessage?: boolean; + + /** + * Controls whether the terminal is cleared before executing the task. + */ + clear?: boolean; } /** diff --git a/src/vs/vscode.proposed.d.ts b/src/vs/vscode.proposed.d.ts index 27ac0cd9c7336fa6374748a7a3aa657b24755cc9..0a65c4c7193e21f1df48d5d9d630c83061044c8b 100644 --- a/src/vs/vscode.proposed.d.ts +++ b/src/vs/vscode.proposed.d.ts @@ -1246,17 +1246,6 @@ declare module 'vscode' { //#endregion //#region Task - /** - * Controls how the task is presented in the UI. - */ - export interface TaskPresentationOptions { - /** - * Controls whether the terminal is cleared before executing the task. - */ - clear?: boolean; - } - - export enum RerunBehavior { reevaluate = 1, useEvaluated = 2,