aerial.nvim/tests/treesitter/snakemake_test.smk
Ryan Dale c306ffcf34
feat(treesitter): support for snakemake (#316)
* add snakemake, based off of python

* add snakemake test file

* add example (but currently incorrect) test file

* fix tests
2023-10-17 07:58:08 -07:00

12 lines
135 B
Text

rule all:
input:
"b.txt"
output:
"c.txt"
shell:
"ls -la > {output}"
def f():
pass
var = 'hi'