mirror of
https://github.com/Llewellynvdm/exa.git
synced 2025-04-04 06:31:50 +00:00
Merge pull request #593 from ariasuni/add-new-filetypes
Add a few frequent filetypes
This commit is contained in:
commit
d13cce7d94
@ -20,10 +20,13 @@ impl FileExtensions {
|
|||||||
/// in order to kick off the build of a project. It’s usually only present
|
/// in order to kick off the build of a project. It’s usually only present
|
||||||
/// in directories full of source code.
|
/// in directories full of source code.
|
||||||
fn is_immediate(&self, file: &File) -> bool {
|
fn is_immediate(&self, file: &File) -> bool {
|
||||||
file.name.to_lowercase().starts_with("readme") || file.name_is_one_of( &[
|
file.name.to_lowercase().starts_with("readme") ||
|
||||||
|
file.name.ends_with(".ninja") ||
|
||||||
|
file.name_is_one_of( &[
|
||||||
"Makefile", "Cargo.toml", "SConstruct", "CMakeLists.txt",
|
"Makefile", "Cargo.toml", "SConstruct", "CMakeLists.txt",
|
||||||
"build.gradle", "Rakefile", "Gruntfile.js",
|
"build.gradle", "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",
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -74,7 +77,7 @@ impl FileExtensions {
|
|||||||
file.extension_is_one_of( &[
|
file.extension_is_one_of( &[
|
||||||
"zip", "tar", "Z", "z", "gz", "bz2", "a", "ar", "7z",
|
"zip", "tar", "Z", "z", "gz", "bz2", "a", "ar", "7z",
|
||||||
"iso", "dmg", "tc", "rar", "par", "tgz", "xz", "txz",
|
"iso", "dmg", "tc", "rar", "par", "tgz", "xz", "txz",
|
||||||
"lzma", "deb", "rpm", "zst",
|
"lz", "tlz", "lzma", "deb", "rpm", "zst",
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user