Don't treat interpolated strings in make files as content strings

These are more like expression instead of strings

Fixes #38078
This commit is contained in:
Matt Bierner 2018-07-18 19:09:46 -07:00
parent a04a714fa3
commit afc3d77e7c

View file

@ -35,7 +35,10 @@
{
"language": "makefile",
"scopeName": "source.makefile",
"path": "./syntaxes/make.tmLanguage.json"
"path": "./syntaxes/make.tmLanguage.json",
"tokenTypes": {
"string.interpolated": "other"
}
}
],
"configurationDefaults": {