diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-06-29 12:14:04 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-06-29 12:14:04 -0400 |
commit | 34d874555239b24e349488e6895f9899311ace68 (patch) | |
tree | e682ccba1e8d7ad147570aac7762ddec346c1eb7 /snakemake-mode.el | |
parent | 86fe3711687224bc3c5750ecbba1b0a3e6a75335 (diff) | |
download | snakemake-mode-34d874555239b24e349488e6895f9899311ace68.tar.gz |
Fix indentation for first line of run subrule
Prevent indentation from adding to previous whitespace.
Diffstat (limited to 'snakemake-mode.el')
-rw-r--r-- | snakemake-mode.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/snakemake-mode.el b/snakemake-mode.el index 5a1ea4a..69629c5 100644 --- a/snakemake-mode.el +++ b/snakemake-mode.el @@ -144,6 +144,7 @@ indentation is determined by the location within the rule block. (delete-horizontal-space) (indent-to snakemake-indent-subrule-offset)) ((snakemake-run-subrule-first-line-p) + (delete-horizontal-space) (indent-to (+ snakemake-indent-subrule-offset snakemake-indent-run-offset))) ((snakemake-run-subrule-line-p) |