Browse Source

Merge pull request #292 from ogham/exa/master

Add .bk extension to is_temp.
Benjamin Sago 8 years ago
parent
commit
734579576a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/info/filetype.rs

+ 1 - 1
src/info/filetype.rs

@@ -81,7 +81,7 @@ impl FileExtensions {
     fn is_temp(&self, file: &File) -> bool {
         file.name.ends_with('~')
             || (file.name.starts_with('#') && file.name.ends_with('#'))
-            || file.extension_is_one_of( &[ "tmp", "swp", "swo", "swn", "bak" ])
+            || file.extension_is_one_of( &[ "tmp", "swp", "swo", "swn", "bak", "bk" ])
     }
 
     fn is_compiled(&self, file: &File) -> bool {