David Paleino 9cbd3ceab2 - add more completions to aptitude (Closes: #432289)
- 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)
2008-05-10 18:04:06 +02:00

59 lines
1.6 KiB
Plaintext

# povray completion by "David Necas (Yeti)" <yeti@physics.muni.cz>
#
# $Id: povray,v 1.2 2003/12/31 08:22:37 ianmacd Exp $
_povray()
{
local cur prev povcur pfx oext defoext
defoext=png # default output extension, if cannot be determined FIXME
COMPREPLY=()
povcur=`_get_cword`
prev=${COMP_WORDS[COMP_CWORD-1]}
_expand || return 0
case $povcur in
[-+]I*)
cur="${povcur#[-+]I}" # to confuse _filedir
pfx="${povcur%"$cur"}"
_filedir pov
COMPREPLY=( ${COMPREPLY[@]/#/$pfx} )
return 0
;;
[-+]O*)
# guess what output file type user may want
case $( ( IFS=$'\n'; echo "${COMP_WORDS[*]}" | grep '^[-+]F' ) ) in
[-+]FN) oext=png ;;
[-+]FP) oext=ppm ;;
[-+]F[CT]) oext=tga ;;
*) oext=$defoext ;;
esac
# complete filename corresponding to previously specified +I
COMPREPLY=( $( ( IFS=$'\n'; echo "${COMP_WORDS[*]}" | grep '^[-+]I' ) ) )
COMPREPLY=( ${COMPREPLY[@]#[-+]I} )
COMPREPLY=( ${COMPREPLY[@]/%.pov/.$oext} )
cur="${povcur#[-+]O}" # to confuse _filedir
pfx="${povcur%"$cur"}"
_filedir $oext
COMPREPLY=( ${COMPREPLY[@]/#/$pfx} )
return 0
;;
*.ini\[|*.ini\[*[^]]) # sections in .ini files
cur="${povcur#*\[}"
pfx="${povcur%\["$cur"}" # prefix == filename
[ -r "$pfx" ] || return 0
COMPREPLY=( $(sed -e 's/^[[:space:]]*\[\('"$cur"'[^]]*\]\).*$/\1/' -e 't' -e 'd' -- "$pfx") )
# to prevent [bar] expand to nothing. can be done more easily?
COMPREPLY=( "${COMPREPLY[@]/#/$pfx[}" )
return 0
;;
*)
cur="$povcur"
_filedir '?(ini|pov)'
return 0
;;
esac
}
complete -F _povray -o filenames povray xpovray spovray