17 lines
405 B
Bash
17 lines
405 B
Bash
# shellcheck shell=bash
|
|
|
|
_command_exists laravel || return
|
|
|
|
function __laravel_completion() {
|
|
local OPTS=('-h' '--help' '-q' '--quiet' '--ansi' '--no-ansi' '-n' '--no-interaction' '-v' '-vv' '-vvv' '--verbose' 'help' 'list' 'new')
|
|
local _opt_
|
|
COMPREPLY=()
|
|
for _opt_ in "${OPTS[@]}"; do
|
|
if [[ "$_opt_" == "$2"* ]]; then
|
|
COMPREPLY+=("$_opt_")
|
|
fi
|
|
done
|
|
}
|
|
|
|
complete -F __laravel_completion laravel
|