diff options
author | Kyle Meyer <kyle@kyleam.com> | 2016-02-07 17:07:24 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2016-02-07 17:09:44 -0500 |
commit | 4f64233f1819ed2832b23883916601381e75e1ed (patch) | |
tree | 25a0aec882eec5eeae5340f67a16dbb3b0f454f3 | |
parent | 08bc3c86cc442ba6c76ad60071258d3d60203d6d (diff) | |
download | snakemake-mode-4f64233f1819ed2832b23883916601381e75e1ed.tar.gz |
Add 'script' keyword
This keyword was added in Snakemake 3.5.
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | snakemake-mode.el | 1 |
2 files changed, 3 insertions, 2 deletions
@@ -5,8 +5,8 @@ NEWS -- history of user-visible changes -*- mode: org; -*- ** New features - The keywords 'configfile', 'onsuccess', 'onerror', 'log', and - 'benchmark', 'shadow', as well as the 'touch' function, are now - recognized. + 'benchmark', 'script', 'shadow', as well as the 'touch' function, + are now recognized. - Indentation for field values starting on the line below a field key is now supported. New variable ~snakemake-indent-value-offset~ diff --git a/snakemake-mode.el b/snakemake-mode.el index ea1e899..6ae87ae 100644 --- a/snakemake-mode.el +++ b/snakemake-mode.el @@ -109,6 +109,7 @@ "priority" "resources" "run" + "script" "shadow" "shell" "threads" |