Skip to content

Commit

Permalink
support LiveScript
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Sep 11, 2016
1 parent 99e75c2 commit 452e8f5
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 @@ -97,6 +97,7 @@ var Exts map[string]string = map[string]string{
"lisp": "LISP",
"lsp": "LISP",
"lua": "Lua",
"ls": "LiveScript",
"sc": "LISP",
"f": "FORTRAN Legacy",
"f77": "FORTRAN Legacy",
Expand Down Expand Up @@ -395,6 +396,7 @@ func GetDefinitionLanguages() map[string]*Language {
"Lean": NewLanguage("Lean", "--", "/-", "-/"),
"Lua": NewLanguage("Lua", "--", "--[[", "]]"),
"LISP": NewLanguage("LISP", ";;", "#|", "|#"),
"LiveScript": NewLanguage("LiveScript", "#", "/*", "*/"),
"FORTRAN Legacy": NewLanguage("FORTRAN Legacy", "c,C,!,*", "", ""),
"FORTRAN Modern": NewLanguage("FORTRAN Modern", "!", "", ""),
"GLSL": NewLanguage("GLSL", "//", "/*", "*/"),
Expand Down

0 comments on commit 452e8f5

Please sign in to comment.