- fixed UTF-8 problem with _get_cword(), thanks to Andrei Paskevich (Closes: #472132) - fixed autoremove completion, thanks to Flavio Visentin (Closes: #474974) - cmf and CMF added to playmidi completion (Closes: #365658) - added rrdtool completion, thanks to Justin Pryzby (Closes: #428641) - added OpenDocument completion for unzip/zipinfo (.od{f,g,p,s,t}) (Closes: #472940)
30 lines
429 B
Plaintext
30 lines
429 B
Plaintext
# cksfv completion by Chris <xris@forevermore.net>
|
|
#
|
|
# $Id: cksfv,v 1.3 2004/03/30 22:39:11 ianmacd Exp $
|
|
|
|
_cksfv()
|
|
{
|
|
COMPREPLY=()
|
|
cur=`_get_cword`
|
|
|
|
if [ $COMP_CWORD -eq 1 ]; then
|
|
COMPREPLY=( $( compgen -W '-C -f -i -q -v' -- $cur ) )
|
|
return 0
|
|
fi
|
|
|
|
case "${COMP_WORDS[$COMP_CWORD-1]}" in
|
|
-C)
|
|
_filedir -d
|
|
return 0
|
|
;;
|
|
-f)
|
|
_filedir 'sfv'
|
|
return 0
|
|
;;
|
|
esac
|
|
|
|
_filedir
|
|
return 0
|
|
}
|
|
complete -F _cksfv cksfv
|