From 0f141b6ccfa316ecc332967aae4be4944917d88b Mon Sep 17 00:00:00 2001 From: Muttley Date: Tue, 11 Sep 2018 13:15:31 +0200 Subject: [PATCH] pacaur: recognize *.pkg.tar as valid package extension --- share/completions/pacaur.fish | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/share/completions/pacaur.fish b/share/completions/pacaur.fish index f32b65910..e7fcd19d7 100644 --- a/share/completions/pacaur.fish +++ b/share/completions/pacaur.fish @@ -163,5 +163,4 @@ complete -c $progname -n "$files" -l machinereadable -d 'Show in machine readabl # Theoretically, pacman reads packages in all formats that libarchive supports # In practice, it's going to be tar.xz or tar.gz # Using "pkg.tar.*" here would change __fish_complete_suffix's descriptions to "unknown" -complete -c $progname -n "$upgrade" -xa '(__fish_complete_suffix pkg.tar.xz)' -d 'Package file' -complete -c $progname -n "$upgrade" -xa '(__fish_complete_suffix pkg.tar.gz)' -d 'Package file' +complete -c $progname -n "$upgrade" -xa '(__fish_complete_suffix .pkg.tar\{,.xz,.gz\})' -d 'Package file'