mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-12 13:08:49 +00:00
Remove caret redirection from tar completion
This commit is contained in:
parent
e598cb235a
commit
f479e4a830
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ function __fish_complete_tar -d "Peek inside of archives and list all files"
|
|||
case '-*f' '--file'
|
||||
set -e args[1]
|
||||
if test -f $args[1]
|
||||
set -l file_list (tar -atf $args[1] ^ /dev/null)
|
||||
set -l file_list (tar -atf $args[1] 2> /dev/null)
|
||||
if test -n "$file_list"
|
||||
printf (_ "%s\tArchived file\n") $file_list
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue