From cbe94823d2be91c396e7d27b3cf827f66404460c Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Wed, 12 Oct 2016 11:07:27 -0700 Subject: [PATCH] Add .gradle as a groovy extension pattern Gradle is a build system for JVM-based languages that is configured via a Groovy DSL. --- src/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.rs b/src/types.rs index 69517124..b87e01ac 100644 --- a/src/types.rs +++ b/src/types.rs @@ -39,7 +39,7 @@ const TYPE_EXTENSIONS: &'static [(&'static str, &'static [&'static str])] = &[ ]), ("fsharp", &["*.fs", "*.fsx", "*.fsi"]), ("go", &["*.go"]), - ("groovy", &["*.groovy"]), + ("groovy", &["*.groovy", "*.gradle"]), ("haskell", &["*.hs", "*.lhs"]), ("html", &["*.htm", "*.html"]), ("java", &["*.java"]),