Replies: 2 comments 1 reply
-
Thank you for the bug report. Indeed, I can reproduce the issue, sorry about this. I have also tried to set to a relative path like @syhol did here: https://github.com/syhol/mise-vscode/blob/main/src/extension.ts#L222 (i.e. to It appears that even not all built-in VS Code settings support variable substitution, according to https://code.visualstudio.com/docs/editor/variables-reference#_is-variable-substitution-supported-in-user-and-workspace-settings I will disable this feature for the |
Beta Was this translation helpful? Give feedback.
-
I just wanted to update folks on the solution I found to help with this: zephraph/webview#125. Essentially I'm using https://github.com/swellaby/vscode-workspace-config-plus to make sharable configs and |
Beta Was this translation helpful? Give feedback.
-
@hverlin, love the extension! Thanks for all your work.
I have a PR that enabled symlinks on one of my repos but when I was testing it deno kept failing to find the binary. I thought, at first, that deno just wasn't playing well with symlinks. It turns out that vscode just doesn't do automatic variable substitution in config strings. This will be a problem for other extensions that haven't implemented a solution for
${workspacePath}
replacement.I upstreamed a PR to fix this (denoland/vscode_deno#1245), but for now folks will likely have to add deno to the automatic ignore list.
Beta Was this translation helpful? Give feedback.
All reactions