diff --git a/syntaxes/ampscript.tmLanguage.json b/syntaxes/ampscript.tmLanguage.json index 7e6e8bc..d2783de 100644 --- a/syntaxes/ampscript.tmLanguage.json +++ b/syntaxes/ampscript.tmLanguage.json @@ -2,6 +2,7 @@ "version": "2.0", "name": "AMPScript", "scopeName": "source.amp", + "fileTypes": ["amp"], "keyEquivalent": "@A", "foldingStartMarker": "%%\\[\\s*$", "foldingStopMarker": "^\\s*\\]%%$", @@ -26,6 +27,24 @@ }, { "include": "text.html.basic" + }, + { + "include": "#ampscript-comments" + }, + { + "include": "#ampscript-functions" + }, + { + "include": "#ampscript-numeric" + }, + { + "include": "#ampscript-contstants" + }, + { + "include": "#ampscript-language-elements" + }, + { + "include": "#ampscript-strings" } ], "repository": { @@ -44,6 +63,9 @@ } }, "patterns": [ + { + "include": "text.html.basic" + }, { "include": "#ampscript-comments" }, @@ -202,4 +224,4 @@ ] } } -} \ No newline at end of file +}