diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-snakemake.el | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lisp/init-snakemake.el b/lisp/init-snakemake.el new file mode 100644 index 0000000..a5ebd69 --- /dev/null +++ b/lisp/init-snakemake.el @@ -0,0 +1,16 @@ +(require 'snakemake-mode-autoloads) + +(setq snakemake-compile-command-options '("-p")) + +;; Although `compile-command' is set when snakemake-mode is derived from +;; Python mode, I need to define it again here because I have a Python +;; mode hook that sets `compile-command', which overides the snakemake +;; version. +(add-hook 'snakemake-mode-hook + '(lambda () + (set (make-local-variable 'compile-command) + (mapconcat 'identity + (cons "snakemake" snakemake-compile-command-options) + " ")))) + +(provide 'init-snakemake) |