diff options
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | snakemake-mode.el | 4 |
2 files changed, 8 insertions, 1 deletions
@@ -12,7 +12,10 @@ NEWS -- history of user-visible changes -*- mode: org; -*- by ~--cores~ to follow upstream changes. ~--cores~ is bound to ~-c~, and ~--use-conda~ has been moved from ~-c~ to ~-C~. -- The 'name' keyword (new in Snakemake v5.31.0) is now recognized. +- Additional Snakemake keywords are now recognized: 'containerized' + (new in Snakemake v6.0.0), 'default_target' (new in Snakemake + v6.15.0), 'handover' (new in Snakemake v6.2.0), 'name' (new in + Snakemake v5.31.0), and 'notebook' (new in Snakemake v5.10.0). * v1.8.0 diff --git a/snakemake-mode.el b/snakemake-mode.el index 29b2544..4c26392 100644 --- a/snakemake-mode.el +++ b/snakemake-mode.el @@ -87,12 +87,15 @@ "conda" "container" "cwl" + "default_target" "envmodules" "group" + "handover" "input" "log" "message" "name" + "notebook" "output" "params" "priority" @@ -114,6 +117,7 @@ (sm-command . ,(rx symbol-start (or "configfile" "container" + "containerized" "envvars" "include" "localrules" |