mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-20 05:53:52 +01:00
11 lines
214 B
Plaintext
11 lines
214 B
Plaintext
#defcomp -condition-
|
|
|
|
if [[ -current -1 -o ]]; then
|
|
complist -o -M 'L:|[nN][oO]= M:_= M:{A-Z}={a-z}'
|
|
elif [[ -current -1 -nt || -current -1 -ot || -current -1 -ef ]]; then
|
|
_files
|
|
else
|
|
_files
|
|
complist -v
|
|
fi
|