allow terminal.cwd to be a URI

This commit is contained in:
kieferrm
2018-12-05 14:48:18 -08:00
parent d7af2b0160
commit f8d555167e
6 changed files with 19 additions and 9 deletions

View File

@@ -102,7 +102,7 @@ export class ExtHostTerminal extends BaseExtHostTerminal implements vscode.Termi
public create(
shellPath?: string,
shellArgs?: string[],
cwd?: string,
cwd?: string | URI,
env?: { [key: string]: string },
waitOnExit?: boolean
): void {