mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Merge from vscode 3bd60b2ba753e7fe39b42f99184bc6c5881d3551 (#4712)
This commit is contained in:
5
src/vs/vscode.d.ts
vendored
5
src/vs/vscode.d.ts
vendored
@@ -6599,10 +6599,11 @@ declare module 'vscode' {
|
||||
*
|
||||
* @param name Optional human-readable string which will be used to represent the terminal in the UI.
|
||||
* @param shellPath Optional path to a custom shell executable to be used in the terminal.
|
||||
* @param shellArgs Optional args for the custom shell executable, this does not work on Windows (see #8429)
|
||||
* @param shellArgs Optional args for the custom shell executable. A string can be used on Windows only which
|
||||
* allows specifying shell args in [command-line format](https://msdn.microsoft.com/en-au/08dfcab2-eb6e-49a4-80eb-87d4076c98c6).
|
||||
* @return A new Terminal.
|
||||
*/
|
||||
export function createTerminal(name?: string, shellPath?: string, shellArgs?: string[]): Terminal;
|
||||
export function createTerminal(name?: string, shellPath?: string, shellArgs?: string[] | string): Terminal;
|
||||
|
||||
/**
|
||||
* Creates a [Terminal](#Terminal). The cwd of the terminal will be the workspace directory
|
||||
|
||||
Reference in New Issue
Block a user