aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/queries/fusion/locals.scm
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2025-12-05 09:59:04 +0100
committerChristian Clason <ch.clason+github@icloud.com>2025-12-06 18:10:39 +0100
commitd2350758b39dce3593ffa8b058f863ea4cfa5b0e (patch)
treedbd8591ffc0c59d7993fc91924b5ab42d58ae076 /runtime/queries/fusion/locals.scm
parentfeat(fortran)!: update parser and queries (diff)
downloadnvim-treesitter-d2350758b39dce3593ffa8b058f863ea4cfa5b0e.tar
nvim-treesitter-d2350758b39dce3593ffa8b058f863ea4cfa5b0e.tar.gz
nvim-treesitter-d2350758b39dce3593ffa8b058f863ea4cfa5b0e.tar.bz2
nvim-treesitter-d2350758b39dce3593ffa8b058f863ea4cfa5b0e.tar.lz
nvim-treesitter-d2350758b39dce3593ffa8b058f863ea4cfa5b0e.tar.xz
nvim-treesitter-d2350758b39dce3593ffa8b058f863ea4cfa5b0e.tar.zst
nvim-treesitter-d2350758b39dce3593ffa8b058f863ea4cfa5b0e.zip
feat(parsers)!: remove gitlab-hosted blueprint, fusion, jsonc
Problem: Gitlab has too frequent outages, which break automation. Solution: Drop all Gitlab-hosted parsers (two of which have been unmaintained for years).
Diffstat (limited to 'runtime/queries/fusion/locals.scm')
-rw-r--r--runtime/queries/fusion/locals.scm23
1 files changed, 0 insertions, 23 deletions
diff --git a/runtime/queries/fusion/locals.scm b/runtime/queries/fusion/locals.scm
deleted file mode 100644
index d23e0ab46..000000000
--- a/runtime/queries/fusion/locals.scm
+++ /dev/null
@@ -1,23 +0,0 @@
-; Fusion base
-(block) @local.scope
-
-(namespace_declaration
- (alias_namespace) @local.definition.namespace)
-
-(property
- (path
- (path_part) @local.definition.field))
-
-(type
- namespace: (package_name)? @local.definition.namespace
- name: (type_name) @local.definition.type)
-
-; Eel Expressions
-(eel_arrow_function) @local.scope
-
-(eel_object) @local.scope
-
-(eel_parameter) @local.definition.parameter
-
-(eel_object_pair
- key: (eel_property_name) @local.definition.field)