aboutsummaryrefslogtreecommitdiffstats
path: root/queries/forth
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2023-06-12 09:54:30 -0600
committerChristian Clason <c.clason@uni-graz.at>2025-05-12 18:43:40 +0200
commit692b051b09935653befdb8f7ba8afdb640adf17b (patch)
tree167162b6b129ae04f68c5735078521a72917c742 /queries/forth
parentfeat(c-family): inherit injections (diff)
downloadnvim-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/forth')
-rw-r--r--queries/forth/folds.scm1
-rw-r--r--queries/forth/highlights.scm19
-rw-r--r--queries/forth/indents.scm3
-rw-r--r--queries/forth/injections.scm2
-rw-r--r--queries/forth/locals.scm3
5 files changed, 0 insertions, 28 deletions
diff --git a/queries/forth/folds.scm b/queries/forth/folds.scm
deleted file mode 100644
index 443abb30d..000000000
--- a/queries/forth/folds.scm
+++ /dev/null
@@ -1 +0,0 @@
-(word_definition) @fold
diff --git a/queries/forth/highlights.scm b/queries/forth/highlights.scm
deleted file mode 100644
index 1e7207597..000000000
--- a/queries/forth/highlights.scm
+++ /dev/null
@@ -1,19 +0,0 @@
-(core) @function
-
-(operator) @operator
-
-(word) @variable
-
-((word) @constant
- (#lua-match? @constant "^[A-Z_]+$"))
-
-(number) @number
-
-(string) @string
-
-[
- (start_definition)
- (end_definition)
-] @punctuation.delimiter
-
-(comment) @comment @spell
diff --git a/queries/forth/indents.scm b/queries/forth/indents.scm
deleted file mode 100644
index 067755433..000000000
--- a/queries/forth/indents.scm
+++ /dev/null
@@ -1,3 +0,0 @@
-(word_definition) @indent.begin
-
-(end_definition) @indent.end @indent.branch
diff --git a/queries/forth/injections.scm b/queries/forth/injections.scm
deleted file mode 100644
index 2f0e58eb6..000000000
--- a/queries/forth/injections.scm
+++ /dev/null
@@ -1,2 +0,0 @@
-((comment) @injection.content
- (#set! injection.language "comment"))
diff --git a/queries/forth/locals.scm b/queries/forth/locals.scm
deleted file mode 100644
index d91d3aa98..000000000
--- a/queries/forth/locals.scm
+++ /dev/null
@@ -1,3 +0,0 @@
-(word) @local.reference
-
-(word_definition) @local.scope