You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When placing for example ${variable_name} inside a snippet, it should be escaped as \\${variable_name\\}, so that VScode doesn't think it's a placeholder in the snippet
For example for cortex debug, the following line is usually needed: "cwd": "${workspaceRoot}",
With proper encoding: "\"cwd\": \"\\${workspaceRoot\\}\",",
The text was updated successfully, but these errors were encountered:
When placing for example
${variable_name}
inside a snippet, it should be escaped as\\${variable_name\\}
, so that VScode doesn't think it's a placeholder in the snippetFor example for cortex debug, the following line is usually needed:
"cwd": "${workspaceRoot}",
With proper encoding:
"\"cwd\": \"\\${workspaceRoot\\}\",",
The text was updated successfully, but these errors were encountered: