Skip to content

Commit

Permalink
add fidl support
Browse files Browse the repository at this point in the history
  • Loading branch information
chaopeng committed Feb 24, 2024
1 parent ec9efde commit 6d19e84
Show file tree
Hide file tree
Showing 5 changed files with 91 additions and 0 deletions.
1 change: 1 addition & 0 deletions book/src/generated/lang-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
| erb || | | |
| erlang ||| | `erlang_ls` |
| esdl || | | |
| fidl || | | |
| fish |||| |
| forth || | | `forth-lsp` |
| fortran || || `fortls` |
Expand Down
18 changes: 18 additions & 0 deletions languages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3140,3 +3140,21 @@ indent = { tab-width = 2, unit = " " }
[[grammar]]
name = "groovy"
source = { git = "https://github.com/Decodetalkers/tree-sitter-groovy", rev = "7e023227f46fee428b16a0288eeb0f65ee2523ec" }

[[language]]
name = "fidl"
scope = "source.fidl"
injection-regex = "fidl"
file-types = ["fidl"]
comment-token = "//"
indent = { tab-width = 4, unit = " " }

[language.auto-pairs]
'"' = '"'
'{' = '}'
'(' = ')'
'<' = '>'

[[grammar]]
name = "fidl"
source = { git = "https://github.com/google/tree-sitter-fidl", rev = "bdbb635a7f5035e424f6173f2f11b9cd79703f8d" }
6 changes: 6 additions & 0 deletions runtime/queries/fidl/folds.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[
(layout_declaration)
(protocol_declaration)
(resource_declaration)
(service_declaration)
] @fold
64 changes: 64 additions & 0 deletions runtime/queries/fidl/highlights.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
[
"ajar"
"alias"
"as"
"bits"
"closed"
"compose"
"const"
"enum"
"error"
"flexible"
"library"
"open"
; "optional" we did not specify a node for optional yet
"overlay"
"protocol"
"reserved"
"resource"
"service"
"strict"
"struct"
"table"
"type"
"union"
"using"
] @keyword

(primitives_type) @type.builtin

(builtin_complex_type) @type.builtin

(const_declaration
(identifier) @constant)

[
"="
"|"
"&"
"->"
] @operator

(attribute
"@" @attribute
(identifier) @attribute)

(string_literal) @string

(numeric_literal) @constant.numeric

[
(true)
(false)
] @constant.builtin.boolean

(comment) @comment

[
"("
")"
"<"
">"
"{"
"}"
] @punctuation.bracket
2 changes: 2 additions & 0 deletions runtime/queries/fidl/injections.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
((comment) @injection.content
(#set! injection.language "comment"))

0 comments on commit 6d19e84

Please sign in to comment.