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

32 lines
1.2 KiB
Plaintext

# Gnatmake completion by Ralf_Schroth@t-online.de (Ralf Schroth)
#
# $Id: gnatmake,v 1.1 2002/08/19 16:57:44 ianmacd Exp $
#
_gnatmake()
{
local cur
COMPREPLY=()
cur=`_get_cword`
if [[ "$cur" == -* ]]; then
# relevant (and less relevant ;-) )options completion
COMPREPLY=( $( compgen -W '-a -c -f -i -j -k -m -M -n -o \
-q -s -v -z -aL -A -aO -aI -I -I- -L -nostdinc \
-nostdlib -cargs -bargs -largs -fstack-check \
-fno-inline -g -O1 -O0 -O2 -O3 -gnata -gnatA \
-gnatb -gnatc -gnatd -gnatD -gnate -gnatE \
-gnatf -gnatF -gnatg -gnatG -gnath -gnati \
-gnatk -gnatl -gnatL -gnatm -gnatn -gnato \
-gnatO -gnatp -gnatP -gnatq -gnatR -gnats \
-gnatt -gnatT -gnatu -gnatU -gnatv -gnatws \
-gnatwe -gnatwl -gnatwu -gnatW -gnatx -gnatX \
-gnaty -gnatz -gnatZ -gnat83' -- $cur ) )
else
# source file completion
_filedir '@(adb|ads)'
fi
}
complete -F _gnatmake -o filenames gnatmake