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/chatito | |
| 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/chatito')
| -rw-r--r-- | queries/chatito/folds.scm | 5 | ||||
| -rw-r--r-- | queries/chatito/highlights.scm | 54 | ||||
| -rw-r--r-- | queries/chatito/indents.scm | 8 | ||||
| -rw-r--r-- | queries/chatito/injections.scm | 2 | ||||
| -rw-r--r-- | queries/chatito/locals.scm | 16 |
5 files changed, 0 insertions, 85 deletions
diff --git a/queries/chatito/folds.scm b/queries/chatito/folds.scm deleted file mode 100644 index 052dd2064..000000000 --- a/queries/chatito/folds.scm +++ /dev/null @@ -1,5 +0,0 @@ -[ - (intent_def) - (slot_def) - (alias_def) -] @fold diff --git a/queries/chatito/highlights.scm b/queries/chatito/highlights.scm deleted file mode 100644 index 47113f2cf..000000000 --- a/queries/chatito/highlights.scm +++ /dev/null @@ -1,54 +0,0 @@ -; Punctuation -[ - "%[" - "@[" - "~[" - "*[" - "]" - "(" - ")" -] @punctuation.bracket - -"," @punctuation.delimiter - -(eq) @operator - -([ - "\"" - "'" -] @punctuation.special - (#set! conceal "")) - -[ - "%" - "?" - "#" -] @character.special - -; Entities -(intent) @module - -(slot) @type - -(variation) @attribute - -(alias) @keyword.directive - -(number) @number - -(argument - key: (string) @property - value: (string) @string) - -(escape) @string.escape - -; Import -"import" @keyword.import - -(file) @string.special.path - -; Text -(word) @spell - -; Comment -(comment) @comment @spell diff --git a/queries/chatito/indents.scm b/queries/chatito/indents.scm deleted file mode 100644 index dc9e13d78..000000000 --- a/queries/chatito/indents.scm +++ /dev/null @@ -1,8 +0,0 @@ -[ - (intent_def) - (slot_def) - (alias_def) -] @indent.begin - -(ERROR - "]") @indent.begin diff --git a/queries/chatito/injections.scm b/queries/chatito/injections.scm deleted file mode 100644 index 2f0e58eb6..000000000 --- a/queries/chatito/injections.scm +++ /dev/null @@ -1,2 +0,0 @@ -((comment) @injection.content - (#set! injection.language "comment")) diff --git a/queries/chatito/locals.scm b/queries/chatito/locals.scm deleted file mode 100644 index 827447f57..000000000 --- a/queries/chatito/locals.scm +++ /dev/null @@ -1,16 +0,0 @@ -; Definitions -(intent_def - (intent) @local.definition) - -(slot_def - (slot) @local.definition) - -(alias_def - (alias) @local.definition) - -; References -(slot_ref - (slot) @local.reference) - -(alias_ref - (alias) @local.reference) |
