Created
July 15, 2013 20:16
-
-
Save csantanapr/6003057 to your computer and use it in GitHub Desktop.
Add to ~/.profile as
source ~/.cordova-completion.bash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!bash | |
case "$COMP_WORDBREAKS" in | |
*:*) : great ;; | |
*) COMP_WORDBREAKS="$COMP_WORDBREAKS:" | |
esac | |
platforms() { | |
get_cordova && COMPREPLY=( $(compgen -W "$(${CORDOVA_BIN} platform ls | tr -d "[]',")" -- $1) ) | |
} | |
plugins() { | |
get_cordova && COMPREPLY=( $(compgen -W "$(${CORDOVA_BIN} plugin ls | tr -d "[]',")" -- $1) ) | |
} | |
get_cordova() { | |
local cordova | |
if [[ -n "${CORDOVA_BIN}" ]]; then return 0; fi | |
cordova=$(eval echo ${COMP_WORDS[0]}) | |
if [[ -x $cordova ]]; then CORDOVA_BIN=$cordova; return 0; fi | |
cordova=$(which cordova) | |
if [[ $? -eq 0 ]]; then CORDOVA_BIN=$cordova; return 0; fi | |
return 1 | |
} | |
get_top_level_dir() { | |
local path | |
path=$(pwd) | |
while [ $path != '/' ]; do | |
if [ -d $path/.cordova ]; then | |
echo $path | |
return 0 | |
fi | |
path=$(dirname $path) | |
done | |
return 1 | |
} | |
_cordova() | |
{ | |
local cur prev opts | |
COMPREPLY=() | |
cur="${COMP_WORDS[COMP_CWORD]}" | |
# Skip over any initial command line switches | |
local i=1 | |
while [[ $i -lt ${#COMP_WORDS[*]} ]] && [[ "${COMP_WORDS[${i}]}" == -* ]]; do | |
i=$((i+1)); | |
done | |
# For the first word, supply all of the valid top-level commands | |
if [[ ${COMP_CWORD} -eq $i ]]; then | |
opts="create platform plugin prepare compile build emulate serve" | |
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) | |
return 0 | |
fi | |
case "${COMP_WORDS[$i]}" in | |
create) | |
if [[ ${COMP_CWORD} -eq $((i+1)) ]]; then | |
COMPREPLY=( $(compgen -d -- ${cur}) ) | |
return 0 | |
fi | |
;; | |
platform) | |
if [[ ${COMP_CWORD} -eq $((i+1)) ]]; then | |
opts="add rm remove ls" | |
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) | |
return 0 | |
fi | |
case "${COMP_WORDS[$((i+1))]}" in | |
add) | |
opts="ios android wp7 wp8 blackberry www" | |
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) | |
return 0; | |
;; | |
rm|remove) | |
platforms ${cur} | |
return 0 | |
;; | |
esac | |
;; | |
plugin) | |
if [[ ${COMP_CWORD} -eq $((i+1)) ]]; then | |
opts="add rm remove ls" | |
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) | |
return 0 | |
fi | |
case "${COMP_WORDS[$((i+1))]}" in | |
add) | |
COMPREPLY=( $(compgen -d -- ${cur}) ) | |
return 0; | |
;; | |
rm|remove) | |
plugins ${cur} | |
return 0 | |
;; | |
esac | |
;; | |
prepare|compile|build|emulate) | |
platforms ${cur} | |
return 0 | |
;; | |
serve) | |
if [[ ${COMP_CWORD} -eq $((i+1)) ]]; then | |
platforms ${cur} | |
return 0 | |
fi | |
;; | |
esac | |
} | |
complete -o default -o nospace -F _cordova cordova |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment