nvim-treesitter/tests/query/injections/yaml/bash-on-taskfiles.yml
2025-04-07 21:08:22 +02:00

24 lines
345 B
YAML

# https://taskfile.dev
version: '3'
vars:
GREETING:
sh: echo "Hello, World!"
# ^ @bash
tasks:
default:
cmds:
- echo "{{.GREETING}}"
# ^ @bash
silent: true
cmd:
cmd: echo "{{.GREETING}}"
# ^ @bash
silent: true
cmd-block:
cmd: |
echo "{{.GREETING}}"
# ^ @bash
silent: true