diff --git a/bash_completion.bash b/bash_completion.bash index d961eba..94bd257 100755 --- a/bash_completion.bash +++ b/bash_completion.bash @@ -193,6 +193,7 @@ _mvn() local plugin_goals_jgitflow="jgitflow:feature-start|jgitflow:feature-finish|jgitflow:release-start|jgitflow:release-finish|jgitflow:hotfix-start|jgitflow:hotfix-finish|jgitflow:build-number" local plugin_goals_wildfly="wildfly:add-resource|wildfly:deploy|wildfly:deploy-only|wildfly:deploy-artifact|wildfly:redeploy|wildfly:redeploy-only|wildfly:undeploy|wildfly:undeploy-artifact|wildfly:run|wildfly:start|wildfly:shutdown|wildfly:execute-commands" local plugin_goals_formatter="formatter:format|formatter:help|formatter:validate" + local plugin_goals_zet="zet:addrs|zet:clean|zet:help|zet:logs|zet:ps|zet:pull|zet:restart|zet:run|zet:shell|zet:start|zet:stop|zet:welcome" ## some plugin (like jboss-as) has '-' which is not allowed in shell var name, to use '_' then replace local common_plugins=`compgen -v | grep "^plugin_goals_.*" | sed 's/plugin_goals_//g' | tr '_' '-' | tr '\n' '|'`