LLVM parser/highlighter added

This commit is contained in:
Benjamin Graham 2021-10-02 17:09:40 -04:00 committed by Stephan Seitz
parent 70b1997cd7
commit 6188437150
2 changed files with 20 additions and 0 deletions

View file

@ -738,6 +738,14 @@ list.hjson = {
maintainers = { "@winston0410" },
}
list.llvm = {
install_info = {
url = "https://github.com/benwilliamgraham/tree-sitter-llvm",
files = { "src/parser.c" },
},
maintainers = { "@benwilliamgraham" },
}
local M = {
list = list,
}

View file

@ -0,0 +1,12 @@
(type) @type
(statement) @statement
(number) @number
(comment) @comment
(string) @string
(label) @label
(keyword) @keyword
(boolean) @boolean
(float) @number
(constant) @identifier
(identifier) @constant
(punctuation) @punctuation