Skip to content

Commit 13506b6

Browse files
Merge pull request #29 from Release-Candidate/whitespace_in_scheme_path
Fix handling of spaces in Scheme path
2 parents 9791632 + d4148ae commit 13506b6

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Chez Scheme REPL for Visual Studio Code Changelog
22

3+
## Version 0.7.3 (2024-08-05)
4+
5+
Special thanks to [tracker1398](https://github.com/tracker1398):
6+
7+
### Bugfixes
8+
9+
- handle spaces in the Scheme executable path.
10+
311
## Version 0.7.2 (2024-07-15)
412

513
Special thanks to [migraine-user](https://github.com/migraine-user) for helping with these:

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vscode-scheme-repl",
33
"displayName": "Chez Scheme REPL",
4-
"version": "0.7.2",
4+
"version": "0.7.3",
55
"preview": false,
66
"publisher": "release-candidate",
77
"description": "Support for Chez Scheme: Highlighting, autocompletion, documentation on hover and syntax checks.",

src/paneREPL.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ export async function createREPL(
210210
cwd: root ? root.uri.fsPath : "./",
211211
location: { viewColumn: vscode.ViewColumn.Beside, preserveFocus: true },
212212
});
213-
terminal.sendText(`${c.getCfgREPLPath(config)}`);
213+
terminal.sendText(`"${c.getCfgREPLPath(config)}"`);
214214
await help.sleep(c.getCfgREPLDelay(config));
215215
terminal.sendText(`${c.getCfgREPLPromptFunction(config)}`);
216216
return terminal;

test hugo/scheme

892 KB
Binary file not shown.

0 commit comments

Comments
 (0)