Skip to content

Commit

Permalink
Recognize Dockerfile files with extension
Browse files Browse the repository at this point in the history
Make filenames like `Dockerfile.example` or `Dockerfile.build` also 
open with `dockerfile-mode` automatically.
  • Loading branch information
Fuco1 committed Apr 9, 2018
1 parent 4ab78f6 commit 05f8d76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dockerfile-mode.el
Expand Up @@ -169,7 +169,7 @@ If prefix arg NO-CACHE is set, don't cache the image."
(setq local-abbrev-table dockerfile-mode-abbrev-table))

;;;###autoload
(add-to-list 'auto-mode-alist '("Dockerfile\\'" . dockerfile-mode))
(add-to-list 'auto-mode-alist '("Dockerfile\\(?:\\..*\\)?\\'" . dockerfile-mode))

(provide 'dockerfile-mode)

Expand Down

0 comments on commit 05f8d76

Please sign in to comment.