Skip to content

Commit

Permalink
support lang: Visual Basic
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed May 13, 2021
1 parent 29e116c commit 40c3d8c
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 @@ -250,6 +250,7 @@ var Exts = map[string]string{
"csproj": "MSBuild script",
"vbproj": "MSBuild script",
"vcproj": "MSBuild script",
"vb": "Visual Basic",
"vim": "VimL",
"vue": "Vue",
"vy": "Vyper",
Expand Down Expand Up @@ -569,6 +570,7 @@ func NewDefinedLanguages() *DefinedLanguages {
"Vala": NewLanguage("Vala", []string{"//"}, [][]string{{"/*", "*/"}}),
"Verilog": NewLanguage("Verilog", []string{"//"}, [][]string{{"/*", "*/"}}),
"VimL": NewLanguage("VimL", []string{`"`}, [][]string{{"", ""}}),
"Visual Basic": NewLanguage("Visual Basic", []string{"'"}, [][]string{{"", ""}}),
"Vue": NewLanguage("Vue", []string{"<!--"}, [][]string{{"<!--", "-->"}}),
"Vyper": NewLanguage("Vyper", []string{"#"}, [][]string{{"\"\"\"", "\"\"\""}}),
"WiX": NewLanguage("WiX", []string{"<!--"}, [][]string{{"<!--", "-->"}}),
Expand Down

0 comments on commit 40c3d8c

Please sign in to comment.