diff options
author | Kyle Meyer <kyle@kyleam.com> | 2016-04-16 17:03:10 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2016-04-16 17:04:00 -0400 |
commit | 6b538a9f5e2d9e9a138704b0a702ffe1237dc57b (patch) | |
tree | 29ad6386e5a1d895045d789ec060e65ba17c964a | |
parent | 5c9873c39222e8d54afc9e63d1148ae1a822fbda (diff) | |
download | snakemake-mode-6b538a9f5e2d9e9a138704b0a702ffe1237dc57b.tar.gz |
Add wrapper keyword
This keyword was added in Snakemake version 3.5.5.
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | snakemake-mode.el | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -11,6 +11,8 @@ NEWS -- history of user-visible changes -*- mode: org; -*- - Anonymous rule blocks are now supported. +- The 'wrapper' keyword is now recognized. + * v0.3.0 ** New features diff --git a/snakemake-mode.el b/snakemake-mode.el index 56052d1..0d231a7 100644 --- a/snakemake-mode.el +++ b/snakemake-mode.el @@ -108,6 +108,7 @@ "shell" "threads" "version" + "wrapper" ;; Keys for subworkflow blocks "snakefile" "workdir")) |