From a2ed677e037b1d786faf4f15597ab2278a4fd083 Mon Sep 17 00:00:00 2001 From: Dirk Loss Date: Sat, 24 Sep 2016 21:48:33 +0200 Subject: [PATCH] Add support for the Nim programming language file type --- src/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types.rs b/src/types.rs index fc4cafd5..be47fdb7 100644 --- a/src/types.rs +++ b/src/types.rs @@ -53,6 +53,7 @@ const TYPE_EXTENSIONS: &'static [(&'static str, &'static [&'static str])] = &[ ("matlab", &["*.m"]), ("mk", &["mkfile"]), ("ml", &["*.ml"]), + ("nim", &["*.nim"]), ("objc", &["*.h", "*.m"]), ("objcpp", &["*.h", "*.mm"]), ("ocaml", &["*.ml", "*.mli", "*.mll", "*.mly"]),