aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/queries/earthfile
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 /runtime/queries/earthfile
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 'runtime/queries/earthfile')
-rw-r--r--runtime/queries/earthfile/highlights.scm129
-rw-r--r--runtime/queries/earthfile/injections.scm9
2 files changed, 138 insertions, 0 deletions
diff --git a/runtime/queries/earthfile/highlights.scm b/runtime/queries/earthfile/highlights.scm
new file mode 100644
index 000000000..cc7dce298
--- /dev/null
+++ b/runtime/queries/earthfile/highlights.scm
@@ -0,0 +1,129 @@
+(string_array
+ "," @punctuation.delimiter)
+
+(string_array
+ [
+ "["
+ "]"
+ ] @punctuation.bracket)
+
+[
+ "ARG"
+ "AS LOCAL"
+ "BUILD"
+ "CACHE"
+ "CMD"
+ "COPY"
+ "DO"
+ "ENTRYPOINT"
+ "ENV"
+ "EXPOSE"
+ "FROM DOCKERFILE"
+ "FROM"
+ "FUNCTION"
+ "GIT CLONE"
+ "HOST"
+ "IMPORT"
+ "LABEL"
+ "LET"
+ "PROJECT"
+ "RUN"
+ "SAVE ARTIFACT"
+ "SAVE IMAGE"
+ "SET"
+ "USER"
+ "VERSION"
+ "VOLUME"
+ "WORKDIR"
+] @keyword
+
+(for_command
+ [
+ "FOR"
+ "IN"
+ "END"
+ ] @keyword.repeat)
+
+(if_command
+ [
+ "IF"
+ "END"
+ ] @keyword.conditional)
+
+(elif_block
+ "ELSE IF" @keyword.conditional)
+
+(else_block
+ "ELSE" @keyword.conditional)
+
+(import_command
+ [
+ "IMPORT"
+ "AS"
+ ] @keyword.import)
+
+(try_command
+ [
+ "TRY"
+ "FINALLY"
+ "END"
+ ] @keyword.exception)
+
+(wait_command
+ [
+ "WAIT"
+ "END"
+ ] @keyword)
+
+(with_docker_command
+ [
+ "WITH DOCKER"
+ "END"
+ ] @keyword)
+
+[
+ (comment)
+ (line_continuation_comment)
+] @comment @spell
+
+[
+ (target_ref)
+ (target_artifact)
+ (function_ref)
+] @function
+
+(target
+ (identifier) @function)
+
+[
+ (double_quoted_string)
+ (single_quoted_string)
+] @string
+
+(unquoted_string) @string.special
+
+(escape_sequence) @string.escape
+
+(variable) @variable
+
+(expansion
+ [
+ "$"
+ "{"
+ "}"
+ "("
+ ")"
+ ] @punctuation.special)
+
+(build_arg
+ [
+ "--"
+ (variable)
+ ] @variable.parameter)
+
+(options
+ (_) @property)
+
+"=" @operator
+
+(line_continuation) @operator
diff --git a/runtime/queries/earthfile/injections.scm b/runtime/queries/earthfile/injections.scm
new file mode 100644
index 000000000..7435a400e
--- /dev/null
+++ b/runtime/queries/earthfile/injections.scm
@@ -0,0 +1,9 @@
+((comment) @injection.content
+ (#set! injection.language "comment"))
+
+((line_continuation_comment) @injection.content
+ (#set! injection.language "comment"))
+
+((shell_fragment) @injection.content
+ (#set! injection.language "bash")
+ (#set! injection.include-children))