summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2016-10-03 20:51:05 -0400
committerGitHub <noreply@github.com>2016-10-03 20:51:05 -0400
commit48353bea17ae8cc0d1c6fb89e4bb316dfaccb566 (patch)
treebeb8bb877e546d942306b8fd788b2ae23e93fc59
parent47efea234fbeff87399197ef75d0b0613d11c658 (diff)
parent703d5b558efa65054f3b918b5723a3549c7291d2 (diff)
Merge pull request #144 from bitshifter/dotcmake
Added *.cmake extension to cmake file type.
-rw-r--r--src/types.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types.rs b/src/types.rs
index 362d0f03..e5dea7d2 100644
--- a/src/types.rs
+++ b/src/types.rs
@@ -19,7 +19,7 @@ const TYPE_EXTENSIONS: &'static [(&'static str, &'static [&'static str])] = &[
("c", &["*.c", "*.h", "*.H"]),
("cbor", &["*.cbor"]),
("clojure", &["*.clj", "*.cljc", "*.cljs", "*.cljx"]),
- ("cmake", &["CMakeLists.txt"]),
+ ("cmake", &["*.cmake", "CMakeLists.txt"]),
("coffeescript", &["*.coffee"]),
("cpp", &[
"*.C", "*.cc", "*.cpp", "*.cxx",