diff options
author | Steve Purcell <steve@sanityinc.com> | 2014-06-29 11:54:32 +0100 |
---|---|---|
committer | Steve Purcell <steve@sanityinc.com> | 2014-06-29 11:54:32 +0100 |
commit | 940d5c41c3a2a0b30b50f6ca2c85208a1abdf829 (patch) | |
tree | 074b8e4304edadd1f680d1f8b37261034b41982f | |
parent | 0071aa6b85b5a932d42f268f3db75ce1afc342b5 (diff) | |
download | snakemake-mode-940d5c41c3a2a0b30b50f6ca2c85208a1abdf829.tar.gz |
Anchor auto-mode-alist patterns to end-of-line
-rw-r--r-- | snakemake-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/snakemake-mode.el b/snakemake-mode.el index 5ededc9..d12b793 100644 --- a/snakemake-mode.el +++ b/snakemake-mode.el @@ -224,9 +224,9 @@ indentation is determined by the location within the rule block. (cons "snakemake" snakemake-compile-command-options) " "))) ;;;###autoload -(add-to-list 'auto-mode-alist '("Snakefile" . snakemake-mode)) +(add-to-list 'auto-mode-alist '("Snakefile\\'" . snakemake-mode)) ;;;###autoload -(add-to-list 'auto-mode-alist '("\\.smrules" . snakemake-mode)) +(add-to-list 'auto-mode-alist '("\\.smrules\\'" . snakemake-mode)) (provide 'snakemake-mode) |