Merge pull request #100 from emlyn/patch-1

Recognise cljc and cljx extensions as Clojure(script)
This commit is contained in:
Andrew Gallant 2016-09-26 08:59:59 -04:00 committed by GitHub
commit a41235a3b5

View File

@ -18,7 +18,7 @@ const TYPE_EXTENSIONS: &'static [(&'static str, &'static [&'static str])] = &[
("awk", &["*.awk"]),
("c", &["*.c", "*.h", "*.H"]),
("cbor", &["*.cbor"]),
("clojure", &["*.clj", "*.cljs"]),
("clojure", &["*.clj", "*.cljc", "*.cljs", "*.cljx"]),
("cmake", &["CMakeLists.txt"]),
("coffeescript", &["*.coffee"]),
("cpp", &[