diff options
author | Kyle Meyer <kyle@kyleam.com> | 2016-02-07 16:55:17 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2016-02-07 16:55:17 -0500 |
commit | 23b3ca9e6bae85f12f21157837bdc8db7eafc675 (patch) | |
tree | 7369bdee839bdc72e2169caeb8e455578f1462f3 | |
parent | 802fea1d4b1375c4cad5e6e13fcd8b373ed0c22f (diff) | |
download | snakemake-mode-23b3ca9e6bae85f12f21157837bdc8db7eafc675.tar.gz |
Rely on implicit group for defcustom's
-rw-r--r-- | snakemake-mode.el | 5 |
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)) |