1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-03 10:21:46 +02:00
zsh/Functions/Completion/__tar
1999-04-15 18:05:38 +00:00

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