diff options
author | Kyle Meyer <kyle@kyleam.com> | 2017-10-30 13:10:44 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2017-10-30 13:10:44 -0400 |
commit | 0d0d8875c67437bea15d01585cf053060d69c594 (patch) | |
tree | a6c6833049a8f2f79c865108fa418b65d871f78a | |
parent | 95e8d8aa8312b54d6ea18b35667fa3005be1bc76 (diff) | |
download | snakemake-mode-0d0d8875c67437bea15d01585cf053060d69c594.tar.gz |
snakemake-font-lock-keywords: Fix indentation
-rw-r--r-- | snakemake-mode.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/snakemake-mode.el b/snakemake-mode.el index 50d1ef8..3995203 100644 --- a/snakemake-mode.el +++ b/snakemake-mode.el @@ -423,13 +423,13 @@ embedded R, you need to set mmm-global-mode to a non-nil value such as 'maybe.") (2 font-lock-function-name-face nil 'lax) (3 font-lock-keyword-face nil 'lax)) (,(snakemake-rx line-start (one-or-more space) - (group field-key) - (zero-or-more space) ":") + (group field-key) + (zero-or-more space) ":") 1 font-lock-type-face) (,(snakemake-rx (group sm-builtin)) 1 font-lock-builtin-face) (,(snakemake-rx line-start (zero-or-more space) - (group sm-command) - (zero-or-more space) ":") + (group sm-command) + (zero-or-more space) ":") 1 font-lock-keyword-face))) ;;;###autoload |