mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-01 09:41:12 +00:00
14 lines
292 B
Plaintext
14 lines
292 B
Plaintext
#compdef unarchive
|
|
#autoload
|
|
|
|
#
|
|
# Completes unarchive.
|
|
#
|
|
# Authors:
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
#
|
|
|
|
_arguments \
|
|
'(-r --remove)'{-r,--remove}'[remove archive]' \
|
|
"*::archive file:_files -g '(#i)*.(tar|tgz|tbz|tbz2|txz|tlz|gz|bz2|xz|lzma|Z|zip|rar|7z|deb)(-.)'" && return 0
|