213 lines
5.5 KiB
Bash
213 lines
5.5 KiB
Bash
# -*- mode: shell-script; sh-basic-offset: 2; indent-tabs-mode: nil -*-
|
|
# ex: ts=2 sw=2 noet filetype=sh
|
|
|
|
# to enable this, add the following line to ~/.bash_completion you
|
|
# will need to make sure that you've enable bash completion more
|
|
# generally, usually via '. /etc/bash_completion'
|
|
#
|
|
# source $PLTHOME/collects/meta/contrib/completion/racket-completion.bash
|
|
#
|
|
# Change $PLTHOME to whatever references your Racket installation
|
|
|
|
# this completes only *.{rkt,ss,scm,scrbl} files unless there are
|
|
# none, in which case it completes other things
|
|
_smart_filedir()
|
|
{
|
|
COMPREPLY=()
|
|
_filedir '@(rkt|rktl|ss|scm|scrbl)'
|
|
if [[ ${#COMPREPLY[@]} -eq 0 ]]; then
|
|
_filedir
|
|
fi
|
|
return 0
|
|
}
|
|
|
|
_find_exe()
|
|
{
|
|
local exename=$1
|
|
local path=`dirname "${COMP_WORDS[0]}"`
|
|
local old_exe=`basename "${COMP_WORDS[0]}"`
|
|
if [ "${path}" = "." ]
|
|
then
|
|
if [ "${COMP_WORDS[0]}" = "${path}/${old_exe}" ]
|
|
then
|
|
echo "${path}/${exename}"
|
|
else
|
|
echo ${exename}
|
|
fi
|
|
else
|
|
echo "${path}/${exename}"
|
|
fi
|
|
return 0
|
|
|
|
}
|
|
|
|
_racket()
|
|
{
|
|
local cur prev singleopts doubleopts
|
|
COMPREPLY=()
|
|
cur=`_get_cword`
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
doubleopts="--help --version --eval --load --require --lib --script --require-script\
|
|
--main --repl --no-lib --version --warn --syslog --collects --search --addon --no-compiled --no-init-file"
|
|
singleopts="-h -e -f -t -l -p -r -u -k -m -i -n -v -W -L -X -S -A -I -U -N -j -d -b -c -q"
|
|
warnlevels="none fatal error warning info debug"
|
|
|
|
# if '--' is already given, complete all kind of files, but no options
|
|
for (( i=0; i < ${#COMP_WORDS[@]}-1; i++ )); do
|
|
if [[ ${COMP_WORDS[i]} == -- ]]; then
|
|
_smart_filedir
|
|
return 0
|
|
fi
|
|
done
|
|
|
|
# -k takes *two* integer arguments
|
|
if [[ 2 < ${#COMP_WORDS[@]} ]]; then
|
|
if [[ ${COMP_WORDS[COMP_CWORD-2]} == -k ]]; then
|
|
return 0
|
|
fi
|
|
fi
|
|
|
|
|
|
case "${cur}" in
|
|
--*)
|
|
COMPREPLY=( $(compgen -W "${doubleopts}" -- ${cur}) )
|
|
;;
|
|
-*)
|
|
COMPREPLY=( $(compgen -W "${singleopts}" -- ${cur}) )
|
|
;;
|
|
*)
|
|
case "${prev}" in
|
|
# these do not take anything completable as arguments
|
|
--help|-h|-e|--eval|-p|-k)
|
|
;;
|
|
# these take dirs (not files) as arguments
|
|
-X|-S|-A|--collects|--search|--addon)
|
|
_filedir '-d'
|
|
;;
|
|
# these take warnlevels as arguments
|
|
-W|--warn|-L|--syslog)
|
|
COMPREPLY=( $(compgen -W "${warnlevels}" -- ${cur}) )
|
|
;;
|
|
# otherwise, just a file
|
|
*)
|
|
_smart_filedir
|
|
;;
|
|
esac
|
|
;;
|
|
esac
|
|
|
|
return 0
|
|
}
|
|
complete -F _racket $filenames racket
|
|
complete -F _racket $filenames gracket
|
|
complete -F _racket $filenames gracket-text
|
|
|
|
_raco_cmd=$(_find_exe "raco" )
|
|
|
|
|
|
_raco_planet()
|
|
{
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
local planetcmds=$( echo '' '--help' ; for x in `${_raco_cmd} planet --help 2>&1 | sed -n -e 's/^ raco planet \(.[^ ]*\).*/\1/p'` ; do echo ${x} ; done )
|
|
COMPREPLY=( $(compgen -W "${planetcmds}" -- ${cur}) )
|
|
}
|
|
|
|
_raco_cmds=$()
|
|
_racket_cmd=$(_find_exe "racket" )
|
|
|
|
_raco_help()
|
|
{
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
if [ ${#_raco_cmds[@]} -eq 0 ]; then
|
|
# removing the empty string on the next line breaks things. such as my brain.
|
|
_raco_cmds=$( echo '' 'help' ; for x in `${_racket_cmd} -e '(begin (require raco/all-tools) (for ([(k v) (all-tools)]) (printf "~a\n" k)))'` ; do echo ${x} ; done )
|
|
fi
|
|
COMPREPLY=( $(compgen -W "${_raco_cmds}" -- ${cur}) )
|
|
}
|
|
|
|
_racket_collects_dirs=()
|
|
|
|
_complete_collects()
|
|
{
|
|
local cur=$1
|
|
if [ ${#_racket_collects_dirs[@]} -eq 0 ]; then
|
|
_racket_collects_dirs=( $( for x in `${_racket_cmd} -e '(for-each displayln (map path->string (current-library-collection-paths)))'`; do echo "${x}/" ; done ) )
|
|
fi
|
|
local wordlist=""
|
|
for dir in ${_racket_collects_dirs[@]}; do
|
|
wordlist="$wordlist "$( for x in $(compgen -d "${dir}"); do basename "${x}"; done )
|
|
done
|
|
COMPREPLY=( $(compgen -W "${wordlist}" -- ${cur}) )
|
|
}
|
|
|
|
_raco_setup()
|
|
{
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
local prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
|
|
if [ $COMP_CWORD -eq 2 ]
|
|
then
|
|
_complete_collects ${cur}
|
|
else
|
|
case "${prev}" in
|
|
-l) # specifying a particular collection
|
|
_complete_collects ${cur}
|
|
;;
|
|
*)
|
|
_filedir
|
|
;;
|
|
esac
|
|
fi
|
|
}
|
|
|
|
_raco()
|
|
{
|
|
COMPREPLY=()
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
#
|
|
# Complete the arguments to some of the basic commands.
|
|
#
|
|
local makeopts="--disable-inline --no-deps -p --prefix --no-prim -v -vv --help -h"
|
|
|
|
if [ $COMP_CWORD -eq 1 ]; then
|
|
# removing the empty string on the next line breaks things. such as my brain.
|
|
_raco_cmds=$( echo '' 'help' ; for x in `${_racket_cmd} -e '(begin (require raco/all-tools) (for ([(k v) (all-tools)]) (printf "~a\n" k)))'` ; do echo ${x} ; done )
|
|
COMPREPLY=($(compgen -W "${_raco_cmds}" -- ${cur}))
|
|
elif [ $COMP_CWORD -ge 2 ]; then
|
|
# Here we'll handle the main raco commands
|
|
local prev="${COMP_WORDS[1]}"
|
|
case "${prev}" in
|
|
make)
|
|
case "${cur}" in
|
|
-*)
|
|
COMPREPLY=( $(compgen -W "${makeopts}" -- ${cur}) )
|
|
;;
|
|
*)
|
|
_filedir
|
|
;;
|
|
esac
|
|
;;
|
|
planet)
|
|
_raco_planet
|
|
;;
|
|
help)
|
|
_raco_help
|
|
;;
|
|
setup)
|
|
_raco_setup
|
|
;;
|
|
*)
|
|
_filedir
|
|
;;
|
|
esac
|
|
else
|
|
_filedir
|
|
fi
|
|
return 0
|
|
}
|
|
|
|
complete -F _raco rico
|
|
complete -F _raco racket-tool
|
|
complete -F _raco raco
|