nvim-treesitter/tests/query/injections/yaml/bash-on-taskfiles.yml

25 lines
345 B
YAML
Raw Normal View History

# 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