aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMikkel Mondrup Kristensen <monrad@github.com>2025-04-07 21:08:22 +0200
committerGitHub <noreply@github.com>2025-04-07 21:08:22 +0200
commit0e21ee8df6235511c02bab4a5b391d18e165a58d (patch)
treeff945c68d39dbba40f2dce3fea881c7b9d83a23a /tests
parentfeat(yaml): inject bash for taskfiles (#7804) (diff)
downloadnvim-treesitter-0e21ee8df6235511c02bab4a5b391d18e165a58d.tar
nvim-treesitter-0e21ee8df6235511c02bab4a5b391d18e165a58d.tar.gz
nvim-treesitter-0e21ee8df6235511c02bab4a5b391d18e165a58d.tar.bz2
nvim-treesitter-0e21ee8df6235511c02bab4a5b391d18e165a58d.tar.lz
nvim-treesitter-0e21ee8df6235511c02bab4a5b391d18e165a58d.tar.xz
nvim-treesitter-0e21ee8df6235511c02bab4a5b391d18e165a58d.tar.zst
nvim-treesitter-0e21ee8df6235511c02bab4a5b391d18e165a58d.zip
More bash injection support for Taskfile (#7805)
Diffstat (limited to 'tests')
-rw-r--r--tests/query/injections/yaml/bash-on-taskfiles.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/query/injections/yaml/bash-on-taskfiles.yml b/tests/query/injections/yaml/bash-on-taskfiles.yml
index 87a699cc3..c99dc4667 100644
--- a/tests/query/injections/yaml/bash-on-taskfiles.yml
+++ b/tests/query/injections/yaml/bash-on-taskfiles.yml
@@ -13,3 +13,12 @@ tasks:
- echo "{{.GREETING}}"
# ^ @bash
silent: true
+ cmd:
+ cmd: echo "{{.GREETING}}"
+ # ^ @bash
+ silent: true
+ cmd-block:
+ cmd: |
+ echo "{{.GREETING}}"
+ # ^ @bash
+ silent: true