We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2bfef3 commit dbe37a1Copy full SHA for dbe37a1
src/features/OpenInISE.ts
@@ -15,6 +15,6 @@ export function registerOpenInISECommand(): void {
15
var ISEPath = process.env.windir + '\\System32\\WindowsPowerShell\\v1.0\\powershell_ise.exe';
16
}
17
18
- ChildProcess.exec(ISEPath + ' -File ' + uri.fsPath).unref();
+ ChildProcess.exec(ISEPath + ' -File "' + uri.fsPath + '"').unref();
19
});
20
0 commit comments