diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2017-10-30 15:05:43 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2017-10-30 15:06:43 +0100 |
| commit | ae8d7a06a0f3eb49ca9fb33441700b4f410d14c9 (patch) | |
| tree | 0969737adc14d8c9684da03de8fce953808c13ba /lua/plugins | |
| parent | 9cef9d145c69e4d498a457eb7a5735cc183379f4 (diff) | |
| download | vis-ae8d7a06a0f3eb49ca9fb33441700b4f410d14c9.tar.gz vis-ae8d7a06a0f3eb49ca9fb33441700b4f410d14c9.tar.xz | |
lexer: fix file type association for xs lexer
Diffstat (limited to 'lua/plugins')
| -rw-r--r-- | lua/plugins/filetype.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/plugins/filetype.lua b/lua/plugins/filetype.lua index 54a1d4d..415c4c7 100644 --- a/lua/plugins/filetype.lua +++ b/lua/plugins/filetype.lua @@ -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$" }, |
