summaryrefslogtreecommitdiff
path: root/snakemake-mode.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2016-02-07 16:55:17 -0500
committerKyle Meyer <kyle@kyleam.com>2016-02-07 16:55:17 -0500
commit23b3ca9e6bae85f12f21157837bdc8db7eafc675 (patch)
tree7369bdee839bdc72e2169caeb8e455578f1462f3 /snakemake-mode.el
parent802fea1d4b1375c4cad5e6e13fcd8b373ed0c22f (diff)
downloadsnakemake-mode-23b3ca9e6bae85f12f21157837bdc8db7eafc675.tar.gz
Rely on implicit group for defcustom's
Diffstat (limited to 'snakemake-mode.el')
-rw-r--r--snakemake-mode.el5
1 files changed, 0 insertions, 5 deletions
diff --git a/snakemake-mode.el b/snakemake-mode.el
index f476d41..a514365 100644
--- a/snakemake-mode.el
+++ b/snakemake-mode.el
@@ -55,27 +55,22 @@
(defcustom snakemake-mode-hook nil
"Hook run when entering `snakemake-mode'."
- :group 'snakemake
:type 'hook)
(defcustom snakemake-indent-field-offset 4
"Offset for field indentation."
- :group 'snakemake
:type 'integer)
(defcustom snakemake-indent-value-offset 4
"Offset for field values that the line below the field key."
- :group 'snakemake
:type 'integer)
(defcustom snakemake-executable "snakemake"
"Snakemake executable to use in compile command."
- :group 'snakemake
:type 'string)
(defcustom snakemake-compile-command-options nil
"Flags to add to default Snakemake compilation command."
- :group 'snakemake
:type '(repeat string))