aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2020-07-19 23:49:40 -0400
committerKyle Meyer <kyle@kyleam.com>2020-07-19 23:49:40 -0400
commit44b88fc2aff7c970c2699de2d8615d81092342f6 (patch)
tree89375122c74239a4086a4dc9163877390ca059bf
parent03562dcd82964d53eff7314b844c2897d1d9af55 (diff)
downloadsnakemake-mode-44b88fc2aff7c970c2699de2d8615d81092342f6.tar.gz
mode: Add "envvars" to list of top-level commands
-rw-r--r--NEWS3
-rw-r--r--snakemake-mode.el1
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index c2d4210..2b0c32b 100644
--- a/NEWS
+++ b/NEWS
@@ -2,7 +2,8 @@ NEWS -- history of user-visible changes -*- mode: org; -*-
* master (unreleased)
-- The 'cache' keyword (new in Snakemake v5.12.0) is now recognized.
+- The 'envvars' directive (new in 5.11.0) and 'cache' keyword (new in
+ Snakemake v5.12.0) are now recognized.
* v1.7.0
diff --git a/snakemake-mode.el b/snakemake-mode.el
index a628a33..5f603ee 100644
--- a/snakemake-mode.el
+++ b/snakemake-mode.el
@@ -110,6 +110,7 @@
symbol-end))
(sm-command . ,(rx symbol-start
(or "configfile"
+ "envvars"
"include"
"localrules"
"onerror"