Skip to content

Commit

Permalink
Merge pull request #104 from hhatto/add-reason
Browse files Browse the repository at this point in the history
add Reason lang
  • Loading branch information
hhatto authored Feb 1, 2025
2 parents 59331e3 + fb6b0c3 commit e05bdbc
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 @@ -274,6 +274,8 @@ var Exts = map[string]string{
"r": "R",
"R": "R",
"raml": "RAML",
"re": "Reason",
"rei": "Reason",
"Rebol": "Rebol",
"red": "Red",
"rego": "Rego",
Expand Down Expand Up @@ -652,6 +654,7 @@ func NewDefinedLanguages() *DefinedLanguages {
"Q": NewLanguage("Q", []string{"/ "}, [][]string{{"\\", "/"}, {"/", "\\"}}),
"QML": NewLanguage("QML", []string{"//"}, [][]string{{"/*", "*/"}}),
"R": NewLanguage("R", []string{"#"}, [][]string{{"", ""}}),
"Reason": NewLanguage("Reason", []string{"//"}, [][]string{{"/*", "*/"}}),
"Rebol": NewLanguage("Rebol", []string{";"}, [][]string{{"", ""}}),
"Red": NewLanguage("Red", []string{";"}, [][]string{{"", ""}}),
"Rego": NewLanguage("Rego", []string{"#"}, [][]string{{"", ""}}),
Expand Down

0 comments on commit e05bdbc

Please sign in to comment.