diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-12-11 01:22:33 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-12-11 01:22:33 -0500 |
commit | d5b386aefdcd10be2d5885c8ddd6e33bbd8cedae (patch) | |
tree | b0d4038424ec1b9cbb8b0d048556821d058eee53 | |
parent | fd2f05a04cf3d72b2dad60ff952adadefc5b1f29 (diff) | |
download | snakemake-mode-d5b386aefdcd10be2d5885c8ddd6e33bbd8cedae.tar.gz |
Follow Emacs convention for spaces after periods
-rw-r--r-- | snakemake-mode.el | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/snakemake-mode.el b/snakemake-mode.el index 8bae06c..a8b3b0a 100644 --- a/snakemake-mode.el +++ b/snakemake-mode.el @@ -23,12 +23,12 @@ ;;; Commentary: -;; Snakemake mode provides support for editing Snakemake [1] files. It +;; Snakemake mode provides support for editing Snakemake [1] files. It ;; builds on Python mode to provide fontification, indentation, and ;; imenu indexing for Snakemake's rule blocks. ;; ;; If Snakemake mode is installed from MELPA, no additional setup is -;; required. It will be loaded the first time a file named 'Snakefile' +;; required. It will be loaded the first time a file named 'Snakefile' ;; is opened. ;; ;; Otherwise, put snakemake-mode.el in your `load-path' and add @@ -135,7 +135,7 @@ Inside rule blocks (or on a blank line directly below), The first line below 'run' will be indented to `snakemake-indent-field-offset' plus - `snakemake-indent-run-offset'. Other lines are indented with + `snakemake-indent-run-offset'. Other lines are indented with `python-indent-line-function'. - Otherwise @@ -192,7 +192,7 @@ Inside rule blocks (or on a blank line directly below), (defun snakemake-run-field-line-p () "Point is on any line below a run field key. This function assumes that -`snakemake-in-rule-or-subworkflow-block-p' is true. If it's not, +`snakemake-in-rule-or-subworkflow-block-p' is true. If it's not, it will give the wrong answer if below a rule block whose last field is 'run'." (save-excursion @@ -208,7 +208,7 @@ field is 'run'." (defun snakemake-previous-field-value-column () "Get column for previous field value. If directly below a field key, this corresponds to the column for -the first non-blank character after 'key:'. Otherwise, it is the +the first non-blank character after 'key:'. Otherwise, it is the column of the first non-blank character." (save-excursion (forward-line -1) @@ -234,7 +234,7 @@ Flags are taken from `snakemake-compile-command-options'." "Run Snakemake with the rule at point as the target. The numeric prefix JOBS controls the number of jobs that -Snakemake runs (defaults to 1). If JOBS is zero, perform a dry +Snakemake runs (defaults to 1). If JOBS is zero, perform a dry run. Customize `snakemake-executable' and @@ -304,4 +304,8 @@ the block at point as the target. (provide 'snakemake-mode) +;; Local variables: +;; sentence-end-double-space: t +;; End: + ;;; snakemake-mode.el ends here |