From 7cf560d27cf2e4ac589e34ab848bf76f6df1bd4d Mon Sep 17 00:00:00 2001 From: Daniel Wood Date: Thu, 3 Nov 2016 15:49:48 -0600 Subject: [PATCH] adding .mak extension for makefile filetype. Fixes #217 --- ignore/src/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ignore/src/types.rs b/ignore/src/types.rs index 027851b0..d274b5bd 100644 --- a/ignore/src/types.rs +++ b/ignore/src/types.rs @@ -123,7 +123,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[ ("lisp", &["*.el", "*.jl", "*.lisp", "*.lsp", "*.sc", "*.scm"]), ("lua", &["*.lua"]), ("m4", &["*.ac", "*.m4"]), - ("make", &["gnumakefile", "Gnumakefile", "makefile", "Makefile", "*.mk"]), + ("make", &["gnumakefile", "Gnumakefile", "makefile", "Makefile", "*.mk", "*.mak"]), ("markdown", &["*.markdown", "*.md", "*.mdown", "*.mkdn"]), ("md", &["*.markdown", "*.md", "*.mdown", "*.mkdn"]), ("matlab", &["*.m"]),