1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-06-02 08:06:07 +02:00

Add c-sharp textobjects (#3494)

Co-authored-by: Gustavo Bogarín <gbogarin@outlook.com>
Co-authored-by: Gustavo Bogarín <gbogarin@posibillian.tech>
This commit is contained in:
Gustavo Bogarín 2022-08-27 10:24:47 -04:00 committed by GitHub
parent 86a8ea57bb
commit e066782782
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 36 additions and 4 deletions

View File

@ -4,7 +4,7 @@
| bash | ✓ | | | `bash-language-server` |
| beancount | ✓ | | | |
| c | ✓ | ✓ | ✓ | `clangd` |
| c-sharp | ✓ | | | `OmniSharp` |
| c-sharp | ✓ | | | `OmniSharp` |
| cairo | ✓ | | | |
| clojure | ✓ | | | `clojure-lsp` |
| cmake | ✓ | ✓ | ✓ | `cmake-language-server` |

View File

@ -235,7 +235,7 @@ language-server = { command = "OmniSharp", args = [ "--languageserver" ] }
[[grammar]]
name = "c-sharp"
source = { git = "https://github.com/tree-sitter/tree-sitter-c-sharp", rev = "53a65a908167d6556e1fcdb67f1ee62aac101dda" }
source = { git = "https://github.com/tree-sitter/tree-sitter-c-sharp", rev = "9c494a503c8e2044bfffce57f70b480c01a82f03" }
[[language]]
name = "go"

View File

@ -228,8 +228,19 @@
"let"
] @keyword
(preprocessor_call) @keyword.directive
(preprocessor_call (_) @keyword.directive)
(nullable_directive) @keyword.directive
(define_directive) @keyword.directive
(undef_directive) @keyword.directive
(if_directive) @keyword.directive
(else_directive) @keyword.directive
(elif_directive) @keyword.directive
(endif_directive) @keyword.directive
(region_directive) @keyword.directive
(endregion_directive) @keyword.directive
(error_directive) @keyword.directive
(warning_directive) @keyword.directive
(line_directive) @keyword.directive
(pragma_directive) @keyword.directive
;; Linq
(from_clause (identifier) @variable)

View File

@ -0,0 +1,21 @@
[
(class_declaration body: (_) @class.inside)
(struct_declaration body: (_) @class.inside)
(interface_declaration body: (_) @class.inside)
(enum_declaration body: (_) @class.inside)
(delegate_declaration)
(record_declaration body: (_) @class.inside)
(record_struct_declaration body: (_) @class.inside)
] @class.around
(constructor_declaration body: (_) @function.inside) @function.around
(destructor_declaration body: (_) @function.inside) @function.around
(method_declaration body: (_) @function.inside) @function.around
(property_declaration (_) @function.inside) @function.around
(parameter (_) @parameter.inside) @parameter.around
(comment)+ @comment.around