Skip to content

Commit

Permalink
add Reason lang
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Jan 31, 2025
1 parent 59331e3 commit fb6b0c3
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 fb6b0c3

Please sign in to comment.