Skip to content

Commit

Permalink
support Ada
Browse files Browse the repository at this point in the history
  • Loading branch information
Hideo Hattori committed Jan 27, 2017
1 parent 8916747 commit 47b1e9a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions language.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ func (ls Languages) Less(i, j int) bool {

var Exts map[string]string = map[string]string{
"as": "ActionScript",
"ada": "Ada",
"adb": "Ada",
"ads": "Ada",
"Ant": "Ant",
"asm": "Assembly",
"S": "Assembly",
Expand Down Expand Up @@ -373,6 +376,7 @@ func GetDefinitionLanguages() map[string]*Language {

return map[string]*Language{
"ActionScript": NewLanguage("ActionScript", "//", "/*", "*/"),
"Ada": NewLanguage("Ada", "--", "", ""),
"Ant": NewLanguage("Ant", "<!--", "<!--", "-->"),
"Assembly": NewLanguage("Assembly", "//,;,#,@,|,!", "/*", "*/"),
"Awk": NewLanguage("Awk", "#", "", ""),
Expand Down

0 comments on commit 47b1e9a

Please sign in to comment.