diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index 0b03428ebcd9f7d110046a654eae8ccb8d4e103c..4cf784d612944b5e46e9c519344dd8b996a55621 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -9724,6 +9724,8 @@ declare module 'vscode' { * Note writing `\n` will just move the cursor down 1 row, you need to write `\r` as well * to move the cursor to the left-most cell. * + * Events fired before {@link Pseudoterminal.open} is called will be be ignored. + * * **Example:** Write red text to the terminal * ```typescript * const writeEmitter = new vscode.EventEmitter(); @@ -9749,6 +9751,8 @@ declare module 'vscode' { * bar). Set to `undefined` for the terminal to go back to the regular dimensions (fit to * the size of the panel). * + * Events fired before {@link Pseudoterminal.open} is called will be be ignored. + * * **Example:** Override the dimensions of a terminal to 20 columns and 10 rows * ```typescript * const dimensionsEmitter = new vscode.EventEmitter(); @@ -9771,6 +9775,8 @@ declare module 'vscode' { /** * An event that when fired will signal that the pty is closed and dispose of the terminal. * + * Events fired before {@link Pseudoterminal.open} is called will be be ignored. + * * A number can be used to provide an exit code for the terminal. Exit codes must be * positive and a non-zero exit codes signals failure which shows a notification for a * regular terminal and allows dependent tasks to proceed when used with the @@ -9800,6 +9806,8 @@ declare module 'vscode' { /** * An event that when fired allows changing the name of the terminal. * + * Events fired before {@link Pseudoterminal.open} is called will be be ignored. + * * **Example:** Change the terminal name to "My new terminal". * ```typescript * const writeEmitter = new vscode.EventEmitter();