Skip to content

Commit dbe37a1

Browse files
committed
Fixes #94 - specifically the Open in ISE issue.
1 parent c2bfef3 commit dbe37a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/OpenInISE.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ export function registerOpenInISECommand(): void {
1515
var ISEPath = process.env.windir + '\\System32\\WindowsPowerShell\\v1.0\\powershell_ise.exe';
1616
}
1717

18-
ChildProcess.exec(ISEPath + ' -File ' + uri.fsPath).unref();
18+
ChildProcess.exec(ISEPath + ' -File "' + uri.fsPath + '"').unref();
1919
});
2020
}

0 commit comments

Comments
 (0)