The inspiration for this comes from https://gist.github.com/jhoff/8fbe4116d74931751ecc9e8203dfb7c4
The following code gives you auto-complete for artisan commands in a BASH shell. Just add to your ~/.bash_profile
. If you want a faster auto-complete, run art_cache
from your project root to get a cached file of commands. To remove this file just run art_cache clear
. If you haven't created a cache file, the script uses artisan list
to get the command list dynamically (but this is a lot slower).
export ARTISAN_CMDS_FILE=bootstrap/cache/artisan-cmds.txt
function _artisan() {
COMP_WORDBREAKS=${COMP_WORDBREAKS//:}
if [ -f "$ARTISAN_CMDS_FILE" ]; then
COMMANDS=$(cat "$ARTISAN_CMDS_FILE")
else
COMMANDS=$(php artisan --raw --no-ansi list | awk '{print $1}')
fi
COMPREPLY=(`compgen -W "$COMMANDS" -- "${COMP_WORDS[COMP_CWORD]}"`)
return 0
}
function art_cache() {
if [[ "$1" == "clear" ]]; then
echo -n "Removing commands cache file..."
rm -f "$ARTISAN_CMDS_FILE"
echo "done."
else
php artisan --raw --no-ansi list | awk '{print $1}' > "$ARTISAN_CMDS_FILE"
echo $(wc -l "$ARTISAN_CMDS_FILE" | awk '{print $1}')" artisan commands cached."
fi
}
complete -o default -F _artisan art
complete -o default -F _artisan artisan
Et voila, you now have artisan auto-complete, without having to install an external package.
I don't quite understand how to use this. I put this code in bashrc but none of these functions work.