Is it the expected behaviour that VS Code does not expand variables in its settings?
My example: I need to configure Remote.SSH: Config File to point to a file relative to my home directory. Verbatim values work:
C:/Users/myusername/.ssh/config_vs_codeC:\Users\myusername\.ssh\config_vs_code
I would certainly expect that variable expansion should work but it does not. These values are not functional:
${userHome}/.ssh/config_vs_code${env:UserProfile}/.ssh/config_vs_code${userHome}\.ssh\config_vs_code${env:UserProfile}\.ssh\config_vs_code
${env:UserProfile} expands correctly in my PowerShell.
Am I doing something wrong? Is there a different way how to use variables in VS Code settings?