We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd3098b commit c0a6d2aCopy full SHA for c0a6d2a
apps/vscode/CHANGELOG.md
@@ -3,6 +3,7 @@
3
## 1.124.0 (unreleased)
4
5
- Add yaml frontmatter validation to visual editor (<https://github.com/quarto-dev/quarto/pull/744>).
6
+- Do not prepend path delimiter to path when Quarto is detected (<https://github.com/quarto-dev/quarto/pull/778>).
7
8
## 1.123.0 (Release on 2025-06-17)
9
apps/vscode/src/main.ts
@@ -75,7 +75,7 @@ export async function activate(context: vscode.ExtensionContext) {
75
// ensure quarto is on the path
76
context.environmentVariableCollection.prepend(
77
"PATH",
78
- path.delimiter + quartoContext.binPath + path.delimiter
+ quartoContext.binPath + path.delimiter
79
);
80
81
// status bar
0 commit comments