1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2026-01-29 13:40:22 +01:00

Merge pull request #1656 from hacfi/patch-2

Autocomplete composer default methods if composer.json is not available
This commit is contained in:
Robby Russell
2013-04-07 19:05:08 -07:00

View File

@@ -13,6 +13,8 @@ _composer_get_command_list () {
_composer () { _composer () {
if [ -f composer.json ]; then if [ -f composer.json ]; then
compadd `_composer_get_command_list` compadd `_composer_get_command_list`
else
compadd create-project init search selfupdate show
fi fi
} }