How can I see the values of the Variable References in Visual Studio Code (e.g ${workspaceFolder}/${workspaceFolderBasename} and so on
) - the full path of them?
CodePudding user response:
It is in the Variables doc page.
{
"version": "2.0.0",
"tasks": [
{
"label": "echo",
"type": "shell",
"command": "echo ${workspaceFolder}"
}
]
}