diff options
author | Kyle Meyer <kyle@kyleam.com> | 2018-09-21 23:57:42 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2018-09-22 00:00:28 -0400 |
commit | ca4909ef812928ab20d00d43a28803d06311ff3c (patch) | |
tree | 4d2b0645abb83c36b95d9d0f40ab4b3656cced53 | |
parent | e92a944a49ba6a975c392ae04263e25ee75a1c19 (diff) | |
download | snakemake-mode-ca4909ef812928ab20d00d43a28803d06311ff3c.tar.gz |
snakemake-popup: Add --use-conda
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | snakemake.el | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -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") |