Skip to content

Commit

Permalink
lexer: fix file type association for xs lexer
Browse files Browse the repository at this point in the history
  • Loading branch information
martanne committed Oct 30, 2017
1 parent 9cef9d1 commit ae8d7a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/plugins/filetype.lua
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ vis.ftdetect.filetypes = {
ext = { "%.wsf$" },
},
xs = {
ext = { "%.xs$", "%.xsin", "%.xsrc" },
ext = { "%.xs$", "^%.xsin$", "^%.xsrc$" },
},
xml = {
ext = { "%.dtd$", "%.svg$", "%.xml$", "%.xsd$", "%.xsl$", "%.xslt$", "%.xul$" },
Expand Down

0 comments on commit ae8d7a0

Please sign in to comment.