Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 64d59be729daa548fdccc2aaddd9af2c > files > 1

source-highlight-2.11.1-2mdv2010.0.i586.rpm

# completion for source-highlight
# by Tiziano Muller, dev-zero

_source_highlight()
{
    local cur prev opts 
    COMPREPLY=()
    cur="${COMP_WORDS[COMP_CWORD]}"
    prev="${COMP_WORDS[COMP_CWORD-1]}"

    opts="-h --help -V --version -i --input -o --output -s --src-lang \
    --lang-list --outlang-list -f --out-format -d --doc --no-doc -c --css \
    -T --title -t --tab -H --header -F --footer --style-file --outlang-def \
    --outlang-map --data-dir --output-dir --lang-def --lang-map --show-lang-elements \
    --infer-lang -n --line-number --line-number-ref --line-range --range-separator --range-context --gen-references --ctags-file \
    --ctags -v --verbose --statistics --gen-version --check-lang --check-outlang \
    --failsafe -g --debug-langdef --show-regex"

    if [[ "${cur}" == -* || ${COMP_CWORD} -eq 1 ]] ; then
	COMPREPLY=($(compgen -W "${opts}" -- "${cur}"))
	return 0
    fi

    case "${prev}" in
	-T|--title|-t|--tab|--gen-references|--line-range|--range-separator|--range-context)
	    COMPREPLY=()
	    ;;
	-i|--input|-o|--output|-c|--css|-H|--header|-F|--footer|--style-file|--outlang-def|--outlang-map|--lang-def|--lang-map|--show-lang-elements|--ctags-file|--check-lang|--check-outlang|--show-regex)
	    COMPREPLY=($(compgen -A file -- "${cur}"))
	    ;;
	-s|--src-lang)
	    COMPREPLY=($(compgen -W "C H ac ada am autoconf bib bison c caml cc changelog cls cpp cs csh csharp css \
		diff docbook dtx eps fixed-fortran flex fortran free-fortran glsl h haxe hh hpp htm html hx in ini java javascript js kcfg kdevelop kidl ksh l lang \
		langdef latex ldap ldif lex lgt ll log logtalk lsm lua m4 ml mli moc outlang pas pascal patch perl php php3 php4 php5 \
		pl pm postscript prolog properties ps py python rb rc ruby scala sh shell sig sl slang slsh sml spec sql sty style syslog tcl tcsh \
		tex tk txt ui xhtml xml xorg y yacc yy" -- "${cur}"))
	    ;;
	-f|--out-format)
	    COMPREPLY=($(compgen -W "docbook esc html html-css htmltable\
	    javadoc latex latexcolor texinfo xhtml xhtml-css xhtmltable" -- "${cur}"))
	    ;;
	--data-dir|--output-dir)
	    COMPREPLY=($(compgen -A directory -- "${cur}"))
	    ;;
	*)
	    COMPREPLY=($(compgen -W "${opts/${preprev}}" -- "${cur}"))
	    ;;
    esac
}
complete -F _source_highlight source-highlight

# vim: set ft=sh tw=80 sw=4 et :