mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
add support for the FGA language (#12763)
This commit is contained in:
parent
75abc23428
commit
a36730cb21
5 changed files with 127 additions and 0 deletions
|
@ -55,6 +55,7 @@
|
|||
| erb | ✓ | | | |
|
||||
| erlang | ✓ | ✓ | | `erlang_ls`, `elp` |
|
||||
| esdl | ✓ | | | |
|
||||
| fga | ✓ | ✓ | ✓ | |
|
||||
| fidl | ✓ | | | |
|
||||
| fish | ✓ | ✓ | ✓ | `fish-lsp` |
|
||||
| forth | ✓ | | | `forth-lsp` |
|
||||
|
|
|
@ -4127,3 +4127,15 @@ indent = { tab-width = 4, unit = " " }
|
|||
[[grammar]]
|
||||
name = "tera"
|
||||
source = { git = "https://github.com/uncenter/tree-sitter-tera", rev = "e8d679a29c03e64656463a892a30da626e19ed8e" }
|
||||
|
||||
[[language]]
|
||||
name = "fga"
|
||||
scope = "source.fga"
|
||||
injection-regex = "fga"
|
||||
file-types = ["fga"]
|
||||
comment-token = "#"
|
||||
indent = { tab-width = 2, unit = " " }
|
||||
|
||||
[[grammar]]
|
||||
name = "fga"
|
||||
source = { git = "https://github.com/matoous/tree-sitter-fga", rev = "5005e8dd976e1f67beb3d23204580eb6f8b4c965" }
|
||||
|
|
97
runtime/queries/fga/highlights.scm
Normal file
97
runtime/queries/fga/highlights.scm
Normal file
|
@ -0,0 +1,97 @@
|
|||
; Expressions
|
||||
|
||||
(call_expression
|
||||
function: (identifier) @function)
|
||||
|
||||
(call_expression
|
||||
function: (selector_expression
|
||||
field: (identifier) @function.method))
|
||||
|
||||
|
||||
; Type Definitions
|
||||
|
||||
(type_declaration (identifier) @type)
|
||||
|
||||
(definition
|
||||
relation: (identifier) @variable)
|
||||
|
||||
|
||||
; Relation Definitions
|
||||
|
||||
(relation_def (identifier) @variable.other.member)
|
||||
|
||||
(direct_relationship (identifier) @type)
|
||||
(direct_relationship (conditional (identifier) @function))
|
||||
|
||||
(relation_ref
|
||||
. (identifier) @type
|
||||
(identifier) @variable.other.member)
|
||||
|
||||
(indirect_relation
|
||||
. (identifier) @variable.other.member
|
||||
(identifier) @variable)
|
||||
|
||||
|
||||
; Condition Defintions
|
||||
|
||||
(condition_declaration
|
||||
name: (identifier) @function)
|
||||
|
||||
(condition_declaration (param (identifier) @variable.parameter))
|
||||
|
||||
(binary_expression (identifier) @variable)
|
||||
|
||||
((type_identifier) @type.builtin
|
||||
(#any-of? @type.builtin "string" "int" "map" "uint" "list" "timestamp" "bool" "duration" "double" "ipaddress"))
|
||||
|
||||
|
||||
; Operators
|
||||
|
||||
[
|
||||
"!="
|
||||
"%"
|
||||
"&"
|
||||
"&&"
|
||||
"&^"
|
||||
"*"
|
||||
"+"
|
||||
"-"
|
||||
"/"
|
||||
"<"
|
||||
"<<"
|
||||
"<="
|
||||
"=="
|
||||
">"
|
||||
">="
|
||||
">>"
|
||||
"^"
|
||||
"|"
|
||||
"||"
|
||||
] @operator
|
||||
|
||||
[
|
||||
"or"
|
||||
"and"
|
||||
"but not"
|
||||
"from"
|
||||
"with"
|
||||
] @keyword.operator
|
||||
|
||||
; Keywords
|
||||
|
||||
[
|
||||
"model"
|
||||
"schema"
|
||||
"type"
|
||||
"relations"
|
||||
"define"
|
||||
] @keyword
|
||||
|
||||
[
|
||||
"condition"
|
||||
] @keyword.function
|
||||
|
||||
; Misc
|
||||
|
||||
(version) @constant.numeric
|
||||
(comment) @comment
|
8
runtime/queries/fga/indents.scm
Normal file
8
runtime/queries/fga/indents.scm
Normal file
|
@ -0,0 +1,8 @@
|
|||
[
|
||||
(source_file)
|
||||
(type_declaration)
|
||||
(relations)
|
||||
(condition_declaration)
|
||||
] @indent
|
||||
|
||||
"}" @outdent
|
9
runtime/queries/fga/textobjects.scm
Normal file
9
runtime/queries/fga/textobjects.scm
Normal file
|
@ -0,0 +1,9 @@
|
|||
(condition_declaration
|
||||
body: (_) @function.inside) @function.around
|
||||
|
||||
(param
|
||||
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||
|
||||
(comment) @comment.inside
|
||||
|
||||
(comment)+ @comment.around
|
Loading…
Add table
Add a link
Reference in a new issue