mirror of
https://github.com/sorin-ionescu/prezto.git
synced 2025-01-23 20:12:16 +08:00
14 lines
296 B
Plaintext
14 lines
296 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|jar|rar|7z|deb)(-.)'" && return 0
|