diff --git a/language.go b/language.go index e6ec3b0..4bfb1a0 100644 --- a/language.go +++ b/language.go @@ -256,6 +256,7 @@ var Exts = map[string]string{ "txt": "Plain Text", "polly": "Polly", "proto": "Protocol Buffers", + "prql": "PRQL", "py": "Python", "pxd": "Cython", "pyx": "Cython", @@ -618,6 +619,7 @@ func NewDefinedLanguages() *DefinedLanguages { "PowerShell": NewLanguage("PowerShell", []string{"#"}, [][]string{{"<#", "#>"}}), "Polly": NewLanguage("Polly", []string{""}}), "Protocol Buffers": NewLanguage("Protocol Buffers", []string{"//"}, [][]string{{"", ""}}), + "PRQL": NewLanguage("PRQL", []string{"#"}, [][]string{{"", ""}}), "Python": NewLanguage("Python", []string{"#"}, [][]string{{"\"\"\"", "\"\"\""}}), "Q": NewLanguage("Q", []string{"/ "}, [][]string{{"\\", "/"}, {"/", "\\"}}), "QML": NewLanguage("QML", []string{"//"}, [][]string{{"/*", "*/"}}),