mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
languages: add CEL, SpiceDB schema language (#9296)
* languages: add CEL language and grammar * languages: add spicedb schema language * chore: docgen * runtime/queries: refine spicedb & cel highlights Co-authored-by: Michael Davis <mcarsondavis@gmail.com> * languages: update spicedb --------- Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
This commit is contained in:
parent
7d8ce1a400
commit
d9f7aaacaf
6 changed files with 148 additions and 0 deletions
|
@ -14,6 +14,7 @@
|
||||||
| cabal | | | | `haskell-language-server-wrapper` |
|
| cabal | | | | `haskell-language-server-wrapper` |
|
||||||
| cairo | ✓ | ✓ | ✓ | `cairo-language-server` |
|
| cairo | ✓ | ✓ | ✓ | `cairo-language-server` |
|
||||||
| capnp | ✓ | | ✓ | |
|
| capnp | ✓ | | ✓ | |
|
||||||
|
| cel | ✓ | | | |
|
||||||
| clojure | ✓ | | | `clojure-lsp` |
|
| clojure | ✓ | | | `clojure-lsp` |
|
||||||
| cmake | ✓ | ✓ | ✓ | `cmake-language-server` |
|
| cmake | ✓ | ✓ | ✓ | `cmake-language-server` |
|
||||||
| comment | ✓ | | | |
|
| comment | ✓ | | | |
|
||||||
|
@ -154,6 +155,7 @@
|
||||||
| smithy | ✓ | | | `cs` |
|
| smithy | ✓ | | | `cs` |
|
||||||
| sml | ✓ | | | |
|
| sml | ✓ | | | |
|
||||||
| solidity | ✓ | | | `solc` |
|
| solidity | ✓ | | | `solc` |
|
||||||
|
| spicedb | ✓ | | | |
|
||||||
| sql | ✓ | | | |
|
| sql | ✓ | | | |
|
||||||
| sshclientconfig | ✓ | | | |
|
| sshclientconfig | ✓ | | | |
|
||||||
| starlark | ✓ | ✓ | | |
|
| starlark | ✓ | ✓ | | |
|
||||||
|
|
|
@ -514,6 +514,30 @@ args = { processId = "{0}" }
|
||||||
name = "c-sharp"
|
name = "c-sharp"
|
||||||
source = { git = "https://github.com/tree-sitter/tree-sitter-c-sharp", rev = "5b60f99545fea00a33bbfae5be956f684c4c69e2" }
|
source = { git = "https://github.com/tree-sitter/tree-sitter-c-sharp", rev = "5b60f99545fea00a33bbfae5be956f684c4c69e2" }
|
||||||
|
|
||||||
|
[[language]]
|
||||||
|
name = "cel"
|
||||||
|
scope = "source.cel"
|
||||||
|
injection-regex = "cel"
|
||||||
|
file-types = ["cel"]
|
||||||
|
comment-token = "//"
|
||||||
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
|
||||||
|
[[grammar]]
|
||||||
|
name = "cel"
|
||||||
|
source = { git = "https://github.com/bufbuild/tree-sitter-cel", rev = "9f2b65da14c216df53933748e489db0f11121464" }
|
||||||
|
|
||||||
|
[[language]]
|
||||||
|
name = "spicedb"
|
||||||
|
scope = "source.zed"
|
||||||
|
injection-regex = "spicedb"
|
||||||
|
file-types = ["zed"]
|
||||||
|
comment-token = "//"
|
||||||
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
|
||||||
|
[[grammar]]
|
||||||
|
name = "spicedb"
|
||||||
|
source = { git = "https://github.com/jzelinskie/tree-sitter-spicedb", rev = "a4e4645651f86d6684c15dfa9931b7841dc52a66" }
|
||||||
|
|
||||||
[[language]]
|
[[language]]
|
||||||
name = "go"
|
name = "go"
|
||||||
scope = "source.go"
|
scope = "source.go"
|
||||||
|
|
66
runtime/queries/cel/highlights.scm
Normal file
66
runtime/queries/cel/highlights.scm
Normal file
|
@ -0,0 +1,66 @@
|
||||||
|
; Operators
|
||||||
|
|
||||||
|
[
|
||||||
|
"-"
|
||||||
|
"!"
|
||||||
|
"*"
|
||||||
|
"/"
|
||||||
|
"&&"
|
||||||
|
"%"
|
||||||
|
"+"
|
||||||
|
"<"
|
||||||
|
"<="
|
||||||
|
"=="
|
||||||
|
">"
|
||||||
|
">="
|
||||||
|
"||"
|
||||||
|
] @operator
|
||||||
|
|
||||||
|
; Keywords
|
||||||
|
|
||||||
|
[
|
||||||
|
"in"
|
||||||
|
] @keyword
|
||||||
|
|
||||||
|
; Function calls
|
||||||
|
|
||||||
|
(call_expression
|
||||||
|
function: (identifier) @function)
|
||||||
|
|
||||||
|
(member_call_expression
|
||||||
|
function: (identifier) @function)
|
||||||
|
|
||||||
|
; Identifiers
|
||||||
|
|
||||||
|
(select_expression
|
||||||
|
operand: (identifier) @type)
|
||||||
|
|
||||||
|
(select_expression
|
||||||
|
operand: (select_expression
|
||||||
|
member: (identifier) @type))
|
||||||
|
|
||||||
|
(identifier) @variable.other.member
|
||||||
|
|
||||||
|
; Literals
|
||||||
|
|
||||||
|
[
|
||||||
|
(double_quote_string_literal)
|
||||||
|
(single_quoted_string_literal)
|
||||||
|
(triple_double_quote_string_literal)
|
||||||
|
(triple_single_quoted_string_literal)
|
||||||
|
] @string
|
||||||
|
|
||||||
|
[
|
||||||
|
(int_literal)
|
||||||
|
(uint_literal)
|
||||||
|
] @constant.numeric.integer
|
||||||
|
(float_literal) @constant.numeric.float
|
||||||
|
|
||||||
|
[
|
||||||
|
(true)
|
||||||
|
(false)
|
||||||
|
] @constant.builtin.boolean
|
||||||
|
|
||||||
|
(null) @constant.builtin
|
||||||
|
|
||||||
|
(comment) @comment
|
47
runtime/queries/spicedb/highlights.scm
Normal file
47
runtime/queries/spicedb/highlights.scm
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
; highlights.scm
|
||||||
|
|
||||||
|
[
|
||||||
|
"definition"
|
||||||
|
"caveat"
|
||||||
|
"permission"
|
||||||
|
"relation"
|
||||||
|
"nil"
|
||||||
|
] @keyword
|
||||||
|
|
||||||
|
[
|
||||||
|
","
|
||||||
|
":"
|
||||||
|
] @punctuation.delimiter
|
||||||
|
|
||||||
|
[
|
||||||
|
"("
|
||||||
|
")"
|
||||||
|
"{"
|
||||||
|
"}"
|
||||||
|
] @punctuation.bracket
|
||||||
|
|
||||||
|
[
|
||||||
|
"|"
|
||||||
|
"+"
|
||||||
|
"-"
|
||||||
|
"&"
|
||||||
|
"#"
|
||||||
|
"->"
|
||||||
|
"="
|
||||||
|
] @operator
|
||||||
|
("with") @keyword.operator
|
||||||
|
|
||||||
|
[
|
||||||
|
"nil"
|
||||||
|
"*"
|
||||||
|
] @constant.builtin
|
||||||
|
|
||||||
|
(comment) @comment
|
||||||
|
(type_identifier) @type
|
||||||
|
(cel_type_identifier) @type
|
||||||
|
(cel_variable_identifier) @variable.parameter
|
||||||
|
(field_identifier) @variable.other.member
|
||||||
|
[
|
||||||
|
(func_identifier)
|
||||||
|
(method_identifier)
|
||||||
|
] @function.method
|
5
runtime/queries/spicedb/injections.scm
Normal file
5
runtime/queries/spicedb/injections.scm
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
((comment) @injection.content
|
||||||
|
(#set! injection.language "comment"))
|
||||||
|
|
||||||
|
((caveat_expr) @injection.content
|
||||||
|
(#set! injection.language "cel"))
|
4
runtime/queries/spicedb/tags.scm
Normal file
4
runtime/queries/spicedb/tags.scm
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
(object_definition
|
||||||
|
name: (type_identifier) @name) @definition.type
|
||||||
|
|
||||||
|
(type_identifier) @name @reference.type
|
Loading…
Add table
Add a link
Reference in a new issue