aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--snakemake.el3
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 523dccc..5f5452a 100644
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,7 @@ NEWS -- history of user-visible changes -*- mode: org; -*-
** New features
+- ~snakemake-popup~ now includes ~--use-conda~.
- The 'group' keyword (new in Snakemake v5.0) is now recognized.
* v1.4.0
diff --git a/snakemake.el b/snakemake.el
index d5ff0c8..bb98773 100644
--- a/snakemake.el
+++ b/snakemake.el
@@ -731,7 +731,8 @@ $ snakemake [ARGS] -- <targets>"
(magit-define-popup snakemake-popup
"Popup console for running Snakemake."
:switches
- '((?f "Force" "--force")
+ '((?c "Use conda" "--use-conda")
+ (?f "Force" "--force")
(?i "Ignore temp()" "--notemp")
(?n "Dry run" "--dryrun")
(?p "Print shell commands" "-p")