dotfiles/bash_completion.d/adobe-flex
Dan Buch a8cd5a2fe9 Attempting to carve out a sensible chunk of stuff for a dotfiles repo.
Sure hope I didn't miss any super secret crap :-P
2012-02-26 14:38:01 -05:00

10 lines
213 B
Bash

if [ which mxmlc 2>/dev/null ]
then
__WORDS="$(mxmlc -help list | awk '/^-/ { print $1 }')"
complete -W "$__WORDS" -f -o default mxmlc
complete -W "$__WORDS" -f -o default compc
fi
# vim:filetype=sh