Skip to content

Commit

Permalink
add AutoHotkey
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Jan 2, 2021
1 parent e97e2c7 commit c4330a0
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 @@ -66,6 +66,7 @@ var Exts = map[string]string{
"dats": "ATS",
"sats": "ATS",
"hats": "ATS",
"ahk": "AutoHotkey",
"awk": "Awk",
"bat": "Batch",
"btm": "Batch",
Expand Down Expand Up @@ -425,6 +426,7 @@ func NewDefinedLanguages() *DefinedLanguages {
"AsciiDoc": NewLanguage("AsciiDoc", []string{}, [][]string{{"", ""}}),
"Assembly": NewLanguage("Assembly", []string{"//", ";", "#", "@", "|", "!"}, [][]string{{"/*", "*/"}}),
"ATS": NewLanguage("ATS", []string{"//"}, [][]string{{"/*", "*/"}, {"(*", "*)"}}),
"AutoHotkey": NewLanguage("AutoHotkey", []string{";"}, [][]string{{"", ""}}),
"Awk": NewLanguage("Awk", []string{"#"}, [][]string{{"", ""}}),
"Arduino Sketch": NewLanguage("Arduino Sketch", []string{"//"}, [][]string{{"/*", "*/"}}),
"Batch": NewLanguage("Batch", []string{"REM", "rem"}, [][]string{{"", ""}}),
Expand Down

0 comments on commit c4330a0

Please sign in to comment.