diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2023-06-12 09:54:30 -0600 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2025-05-12 18:43:40 +0200 |
| commit | 692b051b09935653befdb8f7ba8afdb640adf17b (patch) | |
| tree | 167162b6b129ae04f68c5735078521a72917c742 /queries/facility | |
| parent | feat(c-family): inherit injections (diff) | |
| download | nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.tar nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.tar.gz nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.tar.bz2 nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.tar.lz nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.tar.xz nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.tar.zst nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.zip | |
feat!: drop modules, general refactor and cleanup
Diffstat (limited to 'queries/facility')
| -rw-r--r-- | queries/facility/folds.scm | 6 | ||||
| -rw-r--r-- | queries/facility/highlights.scm | 90 | ||||
| -rw-r--r-- | queries/facility/indents.scm | 7 | ||||
| -rw-r--r-- | queries/facility/injections.scm | 8 |
4 files changed, 0 insertions, 111 deletions
diff --git a/queries/facility/folds.scm b/queries/facility/folds.scm deleted file mode 100644 index 7d8bafc80..000000000 --- a/queries/facility/folds.scm +++ /dev/null @@ -1,6 +0,0 @@ -[ - (service) - (method) - (dto) - (enum) -] @fold diff --git a/queries/facility/highlights.scm b/queries/facility/highlights.scm deleted file mode 100644 index 592bf5311..000000000 --- a/queries/facility/highlights.scm +++ /dev/null @@ -1,90 +0,0 @@ -[ - ";" - "." - "," -] @punctuation.delimiter - -[ - "(" - ")" - "[" - "]" - "{" - "}" -] @punctuation.bracket - -(comment) @comment @spell - -(doc_comment) @comment.documentation @spell - -[ - "service" - "errors" -] @keyword - -[ - "method" - "event" -] @keyword.function - -[ - "enum" - "data" -] @keyword.type - -"extern" @keyword.modifier - -(type) @type.builtin - -(service - service_name: (identifier) @type) - -(error_set - (identifier) @variable.member) - -(error_set - name: (identifier) @type) - -(dto - name: (identifier) @type) - -(external_dto - name: (identifier) @type) - -(enum - (values_block - (identifier) @constant)) - -(enum - name: (identifier) @type) - -(external_enum - name: (identifier) @type) - -(type - name: (identifier) @type) - -[ - "map" - "nullable" - "result" - "required" - "http" - "csharp" - "js" - "info" - "obsolete" -] @attribute.builtin - -(parameter - name: (identifier) @variable.parameter) - -(field - name: (identifier) @variable.member) - -(method - name: (identifier) @function.method) - -(number_literal) @number - -(string_literal) @string diff --git a/queries/facility/indents.scm b/queries/facility/indents.scm deleted file mode 100644 index 247949ba1..000000000 --- a/queries/facility/indents.scm +++ /dev/null @@ -1,7 +0,0 @@ -[ - (service_block) - (values_block) - (field_list) -] @indent.begin - -"}" @indent.branch diff --git a/queries/facility/injections.scm b/queries/facility/injections.scm deleted file mode 100644 index 5d9b7836f..000000000 --- a/queries/facility/injections.scm +++ /dev/null @@ -1,8 +0,0 @@ -((remarks) @injection.content - (#set! injection.language "markdown")) - -([ - (comment) - (doc_comment) -] @injection.content - (#set! injection.language "comment")) |
