Procházet zdrojové kódy

Merge pull request #624 from ericbn/filetypes

Add pom.xml and zwc filetypes
Benjamin Sago před 6 roky
rodič
revize
df0d30e966
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      src/info/filetype.rs

+ 2 - 2
src/info/filetype.rs

@@ -24,7 +24,7 @@ impl FileExtensions {
         file.name.ends_with(".ninja") ||
         file.name.ends_with(".ninja") ||
         file.name_is_one_of( &[
         file.name_is_one_of( &[
             "Makefile", "Cargo.toml", "SConstruct", "CMakeLists.txt",
             "Makefile", "Cargo.toml", "SConstruct", "CMakeLists.txt",
-            "build.gradle", "Rakefile", "package.json", "Gruntfile.js",
+            "build.gradle", "pom.xml", "Rakefile", "package.json", "Gruntfile.js",
             "Gruntfile.coffee", "BUILD", "BUILD.bazel", "WORKSPACE", "build.xml",
             "Gruntfile.coffee", "BUILD", "BUILD.bazel", "WORKSPACE", "build.xml",
             "webpack.config.js", "meson.build",
             "webpack.config.js", "meson.build",
         ])
         ])
@@ -88,7 +88,7 @@ impl FileExtensions {
     }
     }
 
 
     fn is_compiled(&self, file: &File) -> bool {
     fn is_compiled(&self, file: &File) -> bool {
-        if file.extension_is_one_of( &[ "class", "elc", "hi", "o", "pyc" ]) {
+        if file.extension_is_one_of( &[ "class", "elc", "hi", "o", "pyc", "zwc" ]) {
             true
             true
         }
         }
         else if let Some(dir) = file.parent_dir {
         else if let Some(dir) = file.parent_dir {