Skip to content

Commit

Permalink
add Vyper
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Sep 23, 2020
1 parent ad8cee3 commit 5ca49d6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions language.go
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,7 @@ var Exts = map[string]string{
"vcproj": "MSBuild script",
"vim": "VimL",
"vue": "Vue",
"vy": "Vyper",
"xml": "XML",
"XML": "XML",
"xsd": "XSD",
Expand Down Expand Up @@ -554,6 +555,7 @@ func NewDefinedLanguages() *DefinedLanguages {
"Verilog": NewLanguage("Verilog", []string{"//"}, [][]string{{"/*", "*/"}}),
"VimL": NewLanguage("VimL", []string{`"`}, [][]string{{"", ""}}),
"Vue": NewLanguage("Vue", []string{"<!--"}, [][]string{{"<!--", "-->"}}),
"Vyper": NewLanguage("Vyper", []string{"#"}, [][]string{{"\"\"\"", "\"\"\""}}),
"WiX": NewLanguage("WiX", []string{"<!--"}, [][]string{{"<!--", "-->"}}),
"XML": NewLanguage("XML", []string{"<!--"}, [][]string{{"<!--", "-->"}}),
"XSLT": NewLanguage("XSLT", []string{"<!--"}, [][]string{{"<!--", "-->"}}),
Expand Down

0 comments on commit 5ca49d6

Please sign in to comment.