From fc7695ee76400ee9833301f98a3fe483d64591b5 Mon Sep 17 00:00:00 2001 From: An-Cheng Huang Date: Mon, 12 Nov 2007 13:13:20 -0800 Subject: initial import from bash_3.1dfsg-8.diff.gz --- debian/bash_completion/contrib/gnatmake | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 debian/bash_completion/contrib/gnatmake (limited to 'debian/bash_completion/contrib/gnatmake') diff --git a/debian/bash_completion/contrib/gnatmake b/debian/bash_completion/contrib/gnatmake new file mode 100644 index 0000000..cadf360 --- /dev/null +++ b/debian/bash_completion/contrib/gnatmake @@ -0,0 +1,31 @@ +# 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=${COMP_WORDS[COMP_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 -- cgit v1.2.3