mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-06 17:31:14 -03:00
Remove caret redirection from tar completion
This commit is contained in:
committed by
Fabian Homborg
parent
e598cb235a
commit
f479e4a830
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user