Make xml extension list flat

This commit is contained in:
Daniel Imms 2015-11-28 18:13:23 -08:00
parent 9c4c52b0d3
commit b223a5e626

View file

@ -6,13 +6,28 @@
"contributes": {
"languages": [{
"id": "xml",
"extensions": [ ".xml", ".dtd", ".ascx", ".csproj", ".config", ".wxi", ".wxl", ".wxs", ".xaml", ".svg", ".svgz" ],
"extensions": [
".xml",
".dtd",
".ascx",
".csproj",
".config",
".wxi",
".wxl",
".wxs",
".xaml",
".svg",
".svgz"
],
"firstLine" : "(\\<\\?xml.*)|(\\<svg)|(\\<\\!doctype\\s+svg)",
"aliases": [ "XML", "xml" ],
"configuration": "./xml.configuration.json"
}, {
"id": "xsl",
"extensions": [ ".xsl", ".xslt" ],
"extensions": [
".xsl",
".xslt"
],
"aliases": [ "XSL", "xsl" ],
"configuration": "./xsl.configuration.json"
}],
@ -26,4 +41,4 @@
"path": "./syntaxes/XSL.plist"
}]
}
}
}