Migrate to an improved proto grammar (#12225)

This commit is contained in:
Sebastian Dörner 2024-12-31 20:41:53 +01:00 committed by GitHub
parent 4a59f68a0d
commit b1759f998d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 37 additions and 38 deletions

View file

@ -340,16 +340,17 @@ source = { git = "https://github.com/Beaglefoot/tree-sitter-awk", rev = "a799bc5
[[language]] [[language]]
name = "protobuf" name = "protobuf"
scope = "source.proto" scope = "source.proto"
injection-regex = "protobuf" injection-regex = "proto"
file-types = ["proto"] file-types = ["proto"]
language-servers = [ "bufls", "pbkit" ] language-servers = [ "bufls", "pbkit" ]
comment-token = "//" comment-token = "//"
block-comment-tokens = { start = "/*", end = "*/" } block-comment-tokens = { start = "/*", end = "*/" }
indent = { tab-width = 2, unit = " " } indent = { tab-width = 2, unit = " " }
grammar = "proto"
[[grammar]] [[grammar]]
name = "protobuf" name = "proto"
source = { git = "https://github.com/yusdacra/tree-sitter-protobuf", rev = "19c211a01434d9f03efff99f85e19f967591b175"} source = { git = "https://github.com/sdoerner/tree-sitter-proto", rev = "778ab6ed18a7fcf82c83805a87d63376c51e80bc"}
[[language]] [[language]]
name = "textproto" name = "textproto"

View file

@ -1,5 +1,6 @@
[ [
"syntax" "syntax"
"edition"
"package" "package"
"option" "option"
"import" "import"
@ -7,44 +8,45 @@
"rpc" "rpc"
"returns" "returns"
"message" "message"
"map"
"enum" "enum"
"oneof" "oneof"
"repeated" "repeated"
"optional"
"required"
"reserved" "reserved"
"to" "to"
"stream" "stream"
"extend" "extend"
"optional"
] @keyword ] @keyword
[ [
(keyType) (key_type)
(type) (type)
(message_or_enum_type)
] @type.builtin ] @type.builtin
[ [
(mapName) (enum_name)
(enumName) (message_name)
(messageName) (service_name)
(extendName) (rpc_name)
(serviceName)
(rpcName)
] @type ] @type
[ [
(fieldName) (field_name)
(optionName) (option_name)
] @variable.other.member ] @variable.other.member
(enumVariantName) @type.enum.variant (enum_variant_name) @type.enum.variant
(fullIdent) @namespace (full_ident) @namespace
(intLit) @constant.numeric.integer (int_lit) @constant.numeric.integer
(floatLit) @constant.numeric.float (float_lit) @constant.numeric.float
(boolLit) @constant.builtin.boolean (bool) @constant.builtin.boolean
(strLit) @string (string) @string
(constant) @constant (block_lit) @constant
(comment) @comment (comment) @comment
@ -55,12 +57,8 @@
"]" "]"
"{" "{"
"}" "}"
] @punctuation.bracket ] @punctuation.bracket
[ "=" @operator
"="
] @operator
[ ";" @punctuation.delimiter
";"
] @punctuation.delimiter

View file

@ -1,10 +1,10 @@
[ [
(messageBody) (message_body)
(enumBody) (enum_body)
(oneofBody) (oneof_body)
(serviceBody) (service_body)
(rpcBody) (rpc_body)
(msgLit) (block_lit)
] @indent ] @indent
"}" @outdent "}" @outdent

View file

@ -1,9 +1,9 @@
(message (messageBody) @class.inside) @class.around (message (message_body) @class.inside) @class.around
(enum (enumBody) @class.inside) @class.around (enum (enum_body) @class.inside) @class.around
(service (serviceBody) @class.inside) @class.around (service (service_body) @class.inside) @class.around
(rpc (enumMessageType) @parameter.inside) @function.inside (rpc (message_or_enum_type) @parameter.inside) @function.inside
(rpc (enumMessageType) @parameter.around) @function.around (rpc (message_or_enum_type) @parameter.around) @function.around
(comment) @comment.inside (comment) @comment.inside
(comment)+ @comment.around (comment)+ @comment.around