Skip to content

Commit 0bf4a12

Browse files
committed
Merge pull request #96 from rkeithhill/rkeithhill/is94-openise-with-spaces
Fixes #94 - specifically the Open in ISE issue.
2 parents c2bfef3 + dbe37a1 commit 0bf4a12

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)