Skip to content

Commit

Permalink
add QML language
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Oct 9, 2019
1 parent 7fe2158 commit 21ba4c7
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 @@ -200,6 +200,7 @@ var Exts = map[string]string{
"pxd": "Cython",
"pyx": "Cython",
"q": "Q",
"qml": "QML",
"r": "R",
"R": "R",
"raml": "RAML",
Expand Down Expand Up @@ -514,6 +515,7 @@ func NewDefinedLanguages() *DefinedLanguages {
"Protocol Buffers": NewLanguage("Protocol Buffers", []string{"//"}, [][]string{{"", ""}}),
"Python": NewLanguage("Python", []string{"#"}, [][]string{{"\"\"\"", "\"\"\""}}),
"Q": NewLanguage("Q", []string{"/ "}, [][]string{{"\\", "/"}, {"/", "\\"}}),
"QML": NewLanguage("QML", []string{"//"}, [][]string{{"/*", "*/"}}),
"R": NewLanguage("R", []string{"#"}, [][]string{{"", ""}}),
"Rebol": NewLanguage("Rebol", []string{";"}, [][]string{{"", ""}}),
"Red": NewLanguage("Red", []string{";"}, [][]string{{"", ""}}),
Expand Down

0 comments on commit 21ba4c7

Please sign in to comment.