Skip to content

Commit 27e2617

Browse files
authored
Merge pull request #76 from vanillajonathan/patch-1
Add PRQL
2 parents 1b44074 + ef68402 commit 27e2617

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

language.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ var Exts = map[string]string{
257257
"txt": "Plain Text",
258258
"polly": "Polly",
259259
"proto": "Protocol Buffers",
260+
"prql": "PRQL",
260261
"py": "Python",
261262
"pxd": "Cython",
262263
"pyx": "Cython",
@@ -620,6 +621,7 @@ func NewDefinedLanguages() *DefinedLanguages {
620621
"PowerShell": NewLanguage("PowerShell", []string{"#"}, [][]string{{"<#", "#>"}}),
621622
"Polly": NewLanguage("Polly", []string{"<!--"}, [][]string{{"<!--", "-->"}}),
622623
"Protocol Buffers": NewLanguage("Protocol Buffers", []string{"//"}, [][]string{{"", ""}}),
624+
"PRQL": NewLanguage("PRQL", []string{"#"}, [][]string{{"", ""}}),
623625
"Python": NewLanguage("Python", []string{"#"}, [][]string{{"\"\"\"", "\"\"\""}}),
624626
"Q": NewLanguage("Q", []string{"/ "}, [][]string{{"\\", "/"}, {"/", "\\"}}),
625627
"QML": NewLanguage("QML", []string{"//"}, [][]string{{"/*", "*/"}}),

0 commit comments

Comments
 (0)