mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
feat(solidity): add textobject queries for solidity (#10318)
* feat: add textobject queries for solidity * feat(solidity): add parameter textobject query for call expressions * feat(solidity): add more textobject queries for parameters * feat(solidity): add yul function textobject query * feat(solidity): add textobject query for emit statement arguments * feat(solidity): add textobject query for revert call arguments * feat(solidity): update tree-sitter grammar and fix typo * docs: update auto-generated docs * fix(solidity): fix identifiers highlight query priority * feat(solidity): add "abstract" to keywords list * feat(solidity): add highlight query for type alias * feat(solidity): add variable builtin highlight queries
This commit is contained in:
parent
c99c333337
commit
b8ddb2f114
4 changed files with 67 additions and 9 deletions
|
@ -173,7 +173,7 @@
|
||||||
| smali | ✓ | | ✓ | |
|
| smali | ✓ | | ✓ | |
|
||||||
| smithy | ✓ | | | `cs` |
|
| smithy | ✓ | | | `cs` |
|
||||||
| sml | ✓ | | | |
|
| sml | ✓ | | | |
|
||||||
| solidity | ✓ | | | `solc` |
|
| solidity | ✓ | ✓ | | `solc` |
|
||||||
| spicedb | ✓ | | | |
|
| spicedb | ✓ | | | |
|
||||||
| sql | ✓ | | | |
|
| sql | ✓ | | | |
|
||||||
| sshclientconfig | ✓ | | | |
|
| sshclientconfig | ✓ | | | |
|
||||||
|
|
|
@ -1787,7 +1787,7 @@ language-servers = [ "solc" ]
|
||||||
|
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
name = "solidity"
|
name = "solidity"
|
||||||
source = { git = "https://github.com/JoranHonig/tree-sitter-solidity", rev = "9004b86531cb424bd379424cf7266a4585f2af7d" }
|
source = { git = "https://github.com/JoranHonig/tree-sitter-solidity", rev = "08338dcee32603383fcef08f36321900bb7a354b" }
|
||||||
|
|
||||||
[[language]]
|
[[language]]
|
||||||
name = "gleam"
|
name = "gleam"
|
||||||
|
|
|
@ -1,8 +1,3 @@
|
||||||
; identifiers
|
|
||||||
; -----------
|
|
||||||
(identifier) @variable
|
|
||||||
(yul_identifier) @variable
|
|
||||||
|
|
||||||
; Pragma
|
; Pragma
|
||||||
(pragma_directive) @tag
|
(pragma_directive) @tag
|
||||||
(solidity_version_comparison_operator _ @tag)
|
(solidity_version_comparison_operator _ @tag)
|
||||||
|
@ -36,6 +31,7 @@
|
||||||
(type_name) @type
|
(type_name) @type
|
||||||
(primitive_type) @type
|
(primitive_type) @type
|
||||||
(user_defined_type (identifier) @type)
|
(user_defined_type (identifier) @type)
|
||||||
|
(type_alias (identifier) @type)
|
||||||
|
|
||||||
; Color payable in payable address conversion as type and not as keyword
|
; Color payable in payable address conversion as type and not as keyword
|
||||||
(payable_conversion_expression "payable" @type)
|
(payable_conversion_expression "payable" @type)
|
||||||
|
@ -80,7 +76,7 @@
|
||||||
|
|
||||||
; Function parameters
|
; Function parameters
|
||||||
(call_struct_argument name: (identifier) @field)
|
(call_struct_argument name: (identifier) @field)
|
||||||
(event_paramater name: (identifier) @variable.parameter)
|
(event_parameter name: (identifier) @variable.parameter)
|
||||||
(parameter name: (identifier) @variable.parameter)
|
(parameter name: (identifier) @variable.parameter)
|
||||||
|
|
||||||
; Yul functions
|
; Yul functions
|
||||||
|
@ -99,6 +95,7 @@
|
||||||
; Keywords
|
; Keywords
|
||||||
(meta_type_expression "type" @keyword)
|
(meta_type_expression "type" @keyword)
|
||||||
[
|
[
|
||||||
|
"abstract"
|
||||||
"pragma"
|
"pragma"
|
||||||
"contract"
|
"contract"
|
||||||
"interface"
|
"interface"
|
||||||
|
@ -159,7 +156,7 @@
|
||||||
"import" @keyword.control.import
|
"import" @keyword.control.import
|
||||||
(import_directive "as" @keyword.control.import)
|
(import_directive "as" @keyword.control.import)
|
||||||
(import_directive "from" @keyword.control.import)
|
(import_directive "from" @keyword.control.import)
|
||||||
(event_paramater "indexed" @keyword) ; TODO fix spelling once fixed upstream
|
(event_parameter "indexed" @keyword)
|
||||||
|
|
||||||
; Punctuation
|
; Punctuation
|
||||||
|
|
||||||
|
@ -217,3 +214,10 @@
|
||||||
"delete"
|
"delete"
|
||||||
"new"
|
"new"
|
||||||
] @keyword.operator
|
] @keyword.operator
|
||||||
|
|
||||||
|
; identifiers
|
||||||
|
; -----------
|
||||||
|
((identifier) @variable.builtin
|
||||||
|
(#match? @variable.builtin "^(this|msg|block|tx)$"))
|
||||||
|
(identifier) @variable
|
||||||
|
(yul_identifier) @variable
|
||||||
|
|
54
runtime/queries/solidity/textobjects.scm
Normal file
54
runtime/queries/solidity/textobjects.scm
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
(function_definition
|
||||||
|
body: (_) @function.inside) @function.around
|
||||||
|
|
||||||
|
(constructor_definition
|
||||||
|
body: (_) @function.inside) @function.around
|
||||||
|
|
||||||
|
(fallback_receive_definition
|
||||||
|
body: (_) @function.inside) @function.around
|
||||||
|
|
||||||
|
(yul_function_definition
|
||||||
|
(yul_block) @function.inside) @function.around
|
||||||
|
|
||||||
|
(function_definition
|
||||||
|
((parameter) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||||
|
|
||||||
|
(constructor_definition
|
||||||
|
((parameter) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||||
|
|
||||||
|
(return_type_definition
|
||||||
|
((parameter) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||||
|
|
||||||
|
(modifier_definition
|
||||||
|
((parameter) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||||
|
|
||||||
|
(event_definition
|
||||||
|
((event_parameter) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||||
|
|
||||||
|
(error_declaration
|
||||||
|
((error_parameter) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||||
|
|
||||||
|
(call_argument
|
||||||
|
((call_struct_argument) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||||
|
|
||||||
|
(call_expression
|
||||||
|
((call_argument) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||||
|
|
||||||
|
(variable_declaration_tuple
|
||||||
|
((variable_declaration) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||||
|
|
||||||
|
(emit_statement
|
||||||
|
((call_argument) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||||
|
|
||||||
|
(revert_arguments
|
||||||
|
((call_argument) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||||
|
|
||||||
|
(struct_declaration
|
||||||
|
body: (_) @class.inside) @class.around
|
||||||
|
|
||||||
|
(enum_declaration
|
||||||
|
body: (_) @class.inside) @class.around
|
||||||
|
|
||||||
|
(comment) @comment.inside
|
||||||
|
|
||||||
|
(comment)+ @comment.around
|
Loading…
Add table
Add a link
Reference in a new issue