diff --git a/src/vscode-dts/vscode.proposed.tabs.d.ts b/src/vscode-dts/vscode.proposed.tabs.d.ts index c077e124548..a17be05a413 100644 --- a/src/vscode-dts/vscode.proposed.tabs.d.ts +++ b/src/vscode-dts/vscode.proposed.tabs.d.ts @@ -85,6 +85,7 @@ declare module 'vscode' { /** * Closes the tab. This makes the tab object invalid and the tab * should no longer be used for further actions. + * @param preserveFocus When `true` focus will remain in its current position. If `false` it will jump to the next tab. */ // TODO@API move into TabGroups, support one or many tabs or tab groups close(preserveFocus: boolean): Thenable;