mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 20:07:44 +03:00
feat: Add SourcePawn language support (#13028)
This commit is contained in:
parent
2d3b75a8c5
commit
dc4761ad3a
5 changed files with 302 additions and 0 deletions
29
runtime/queries/sourcepawn/textobjects.scm
Normal file
29
runtime/queries/sourcepawn/textobjects.scm
Normal file
|
@ -0,0 +1,29 @@
|
|||
(function_definition
|
||||
body: (_) @function.inside) @function.around
|
||||
|
||||
(alias_declaration
|
||||
body: (_) @function.inside) @function.around
|
||||
|
||||
(enum_struct_method
|
||||
body: (_) @function.inside) @function.around
|
||||
|
||||
(methodmap_method
|
||||
body: (_) @function.inside) @function.around
|
||||
|
||||
(methodmap_method_constructor
|
||||
body: (_) @function.inside) @function.around
|
||||
|
||||
(methodmap_method_destructor
|
||||
body: (_) @function.inside) @function.around
|
||||
|
||||
(methodmap_property_method
|
||||
body: (_) @function.inside) @function.around
|
||||
|
||||
(enum_struct) @class.around
|
||||
|
||||
(methodmap) @class.around
|
||||
|
||||
(parameter_declarations
|
||||
((parameter_declaration) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||
|
||||
(comment) @comment.around
|
Loading…
Add table
Add a link
Reference in a new issue