From f0053682c02d0b6fc8d90b6c4f2dd03cce200b35 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Tue, 4 Oct 2016 13:02:26 +0100 Subject: [PATCH] add jinja type for *.jinja and *.jinja2 --- src/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types.rs b/src/types.rs index e5dea7d2..90b83391 100644 --- a/src/types.rs +++ b/src/types.rs @@ -42,6 +42,7 @@ const TYPE_EXTENSIONS: &'static [(&'static str, &'static [&'static str])] = &[ ("haskell", &["*.hs", "*.lhs"]), ("html", &["*.htm", "*.html"]), ("java", &["*.java"]), + ("jinja", &["*.jinja", "*.jinja2"]), ("js", &[ "*.js", "*.jsx", "*.vue", ]),