From caf31a769b9b498c293b80aa9914329b7e1a58ee Mon Sep 17 00:00:00 2001 From: tjdgus3537 Date: Wed, 2 Nov 2016 22:50:59 +0900 Subject: [PATCH] Add .markdown, .mdown, .mkdn extension to md and markdown --- ignore/src/types.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ignore/src/types.rs b/ignore/src/types.rs index 289821c8..3d15f9cb 100644 --- a/ignore/src/types.rs +++ b/ignore/src/types.rs @@ -123,8 +123,8 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[ ("lua", &["*.lua"]), ("m4", &["*.ac", "*.m4"]), ("make", &["gnumakefile", "Gnumakefile", "makefile", "Makefile", "*.mk"]), - ("markdown", &["*.md"]), - ("md", &["*.md"]), + ("markdown", &["*.markdown", "*.md", "*.mdown", "*.mkdn"]), + ("md", &["*.markdown", "*.md", "*.mdown", "*.mkdn"]), ("matlab", &["*.m"]), ("mk", &["mkfile"]), ("ml", &["*.ml"]),