feat: add language support for corn (#4864)

Adds queries and a parser mapping for the [Corn](https://github.com/jakestanger/corn)
configuration language.
This commit is contained in:
Jake Stanger 2023-05-29 09:26:28 +01:00 committed by GitHub
parent e23d5493cf
commit dc38ff85d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 65 additions and 0 deletions

View file

@ -0,0 +1,22 @@
"let" @keyword
"in" @keyword
[
"{"
"}"
"["
"]"
] @punctuation.bracket
"." @punctuation.delimiter
(input) @constant
(comment) @comment
(string) @string
(integer) @number
(float) @float
(boolean) @boolean
(null) @keyword
(ERROR) @error