summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2018-09-21 23:57:42 -0400
committerKyle Meyer <kyle@kyleam.com>2018-09-22 00:00:28 -0400
commitca4909ef812928ab20d00d43a28803d06311ff3c (patch)
tree4d2b0645abb83c36b95d9d0f40ab4b3656cced53
parente92a944a49ba6a975c392ae04263e25ee75a1c19 (diff)
downloadsnakemake-mode-ca4909ef812928ab20d00d43a28803d06311ff3c.tar.gz
snakemake-popup: Add --use-conda
-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")