diff options
author | Michael | 2023-04-06 19:48:10 +0000 |
---|---|---|
committer | GitHub | 2023-04-06 19:48:10 +0000 |
commit | b663b89529b40d00d4db580901cccacdd35c63cf (patch) | |
tree | d79bf8ea5ea0e4edf46cf771fab388ee69398981 | |
parent | 3dd715a115880831e3a0f75a3c00f0b6e1a8364f (diff) |
xml: highlight .xsd as XML files (#6631)
xsd or "XML Schema Definition" files are in XML format and should therefore be
highlighted as such
-rw-r--r-- | languages.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/languages.toml b/languages.toml index a1a2f0a1..51ef3bcf 100644 --- a/languages.toml +++ b/languages.toml @@ -2069,7 +2069,7 @@ source = { git = "https://github.com/Unoqwy/tree-sitter-kdl", rev = "e1cd292c6d1 name = "xml" scope = "source.xml" injection-regex = "xml" -file-types = ["xml", "mobileconfig", "plist", "xib", "storyboard", "svg"] +file-types = ["xml", "mobileconfig", "plist", "xib", "storyboard", "svg", "xsd"] indent = { tab-width = 2, unit = " " } roots = [] |