engines can be default.

SVN revision: 17364
This commit is contained in:
sebastid 2005-10-09 21:42:37 +00:00 committed by sebastid
parent a77b2c311a
commit db24763591
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ _enlightenment_remote() {
COMPREPLY=($(compgen -W "${ENGINE_CONTEXT}" -- "${cur}"))
elif [[ ${COMP_CWORD} -eq 3 ]]; then
engines=$(enlightenment_remote -engine-list|grep REPLY:|awk '{print $2}')
COMPREPLY=($(compgen -W "${engines}" -- "${cur}"))
COMPREPLY=($(compgen -W "DEFAULT ${engines}" -- "${cur}"))
fi
return 0
;;