Skip to content

Commit

Permalink
support NSIS
Browse files Browse the repository at this point in the history
  • Loading branch information
Hideo Hattori committed Aug 19, 2016
1 parent e48831e commit f752938
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions language.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ var Exts map[string]string = map[string]string{
"Matlab": "MATLAB", // both use ext '.m'
"md": "Markdown",
"markdown": "Markdown",
"nsi": "NSIS",
"nsh": "NSIS",
"ML": "OCaml",
"ml": "OCaml",
"mli": "OCaml",
Expand Down Expand Up @@ -407,6 +409,7 @@ func GetDefinitionLanguages() map[string]*Language {
"LESS": NewLanguage("LESS", "//", "/*", "*/"),
"Objective-C": NewLanguage("Objective-C", "//", "/*", "*/"),
"Markdown": NewLanguage("Markdown", "", "", ""),
"NSIS": NewLanguage("NSIS", "#,;", "/*", "*/"),
"OCaml": NewLanguage("OCaml", "", "(*", "*)"),
"Objective-C++": NewLanguage("Objective-C++", "//", "/*", "*/"),
"Makefile": NewLanguage("Makefile", "#", "", ""),
Expand Down

0 comments on commit f752938

Please sign in to comment.