I want to be able to use linux environment variables in vscode workspace settings (specifically $HOME
) so that I can specify paths that aren't specific to a user. In this case I am trying to set the java.home
setting.
I have tried using ${env:HOME}
but this doesn't seem to work. I suspect this is only for vscode tasks.
{
"java.home": "${env:HOME}/.sdkman/candidates/java/8.0.222.hs-adpt/"
}
Get the following error message at the moment:
The java.home variable defined in VS Code settings points to a missing or inaccessible folder (${env:HOME}/.sdkman/candidates/java/8.0.222.hs-adpt/)