diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-12-11 01:26:21 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-12-11 01:26:21 -0500 |
commit | dca894e598cc5206c155f6641883a2ea4e77860f (patch) | |
tree | 1ba33a826620c501684a86c48e55270facf1bad2 | |
parent | 8dbaf607cffcd086082d422a4b03a4681b597e27 (diff) | |
download | snakemake-mode-dca894e598cc5206c155f6641883a2ea4e77860f.tar.gz |
Use consistent ordering for defcustom keywords
-rw-r--r-- | snakemake-mode.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/snakemake-mode.el b/snakemake-mode.el index c6fb3fe..c5448c3 100644 --- a/snakemake-mode.el +++ b/snakemake-mode.el @@ -54,18 +54,18 @@ (defcustom snakemake-mode-hook nil "Hook run when entering `snakemake-mode'." - :type 'hook - :group 'snakemake) + :group 'snakemake + :type 'hook) (defcustom snakemake-indent-field-offset 4 "Offset for field indentation." - :type 'integer - :group 'snakemake) + :group 'snakemake + :type 'integer) (defcustom snakemake-indent-run-offset 2 "Additional offset for 'run' field value." - :type 'integer - :group 'snakemake) + :group 'snakemake + :type 'integer) (defcustom snakemake-executable "snakemake" "Snakemake executable to use in compile command." |