mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-03 10:21:46 +02:00
14 lines
327 B
Text
14 lines
327 B
Text
#function tar
|
|
|
|
local nm=$NMATCHES tf="$2"
|
|
compsave
|
|
|
|
if [[ ( -mword 1 *t*f* || -mword 1 *x*f* ) && -position 3 100000 ]]; then
|
|
complist -k "( $(tar tf $tf) )"
|
|
compreset
|
|
elif [[ -mword 1 *c*f* && -position 3 100000 ]]; then
|
|
__files
|
|
compreset
|
|
elif [[ -mcurrent -1 *f* && -position 2 ]]; then
|
|
__files -g '*.(tar|TAR)'
|
|
fi
|