mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 21:44:11 +01:00
moved from Completion/User/_pack
This commit is contained in:
parent
1549d555a5
commit
809f2996b2
16
Completion/Unix/Command/_pack
Normal file
16
Completion/Unix/Command/_pack
Normal file
@ -0,0 +1,16 @@
|
||||
#compdef pack unpack pcat=unpack
|
||||
|
||||
local expl state line
|
||||
|
||||
case $service in
|
||||
pack)
|
||||
_arguments -C \
|
||||
'-f[force packing even for files which will not benefit]' \
|
||||
'-[show statistics for files]' \
|
||||
'*:file to compress:_files -g \*\~\*.z'
|
||||
;;
|
||||
unpack)
|
||||
_description files expl 'compressed file'
|
||||
_files "$expl[@]" -g '*.z'
|
||||
;;
|
||||
esac
|
Loading…
Reference in New Issue
Block a user