Merge branch 'master' of github.com:ogham/exa

This commit is contained in:
Benjamin Sago 2018-10-08 04:00:52 +01:00
commit 8b4ebc2d6b
2 changed files with 6 additions and 1 deletions

View File

@ -92,6 +92,11 @@ or:
[Formulae](https://github.com/Homebrew/homebrew-core/blob/master/Formula/exa.rb)
### Nix
`exa` is also installable through [the derivation](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/misc/exa/default.nix) using the [nix package manager](https://nixos.org/nix/) by running:
nix-env -i exa
## Testing with Vagrant

View File

@ -37,7 +37,7 @@ impl FileExtensions {
fn is_video(&self, file: &File) -> bool {
file.extension_is_one_of( &[
"avi", "flv", "m2v", "mkv", "mov", "mp4", "mpeg",
"avi", "flv", "m2v", "m4v", "mkv", "mov", "mp4", "mpeg",
"mpg", "ogm", "ogv", "vob", "wmv", "webm", "m2ts",
])
}