====== Gradle Shell Completion ====== * https://github.com/gradle/gradle-completion * [[:gradle|Gradle]] shell auto completion * 기본적으로 ''gradle'', ''gradlew'' 명령에 대해 자동완성을 지원하며, 또한 ''gw'' 명령 혹은 ''gw'' alias 도 지원한다. ===== install homebrew ===== * [[:homebrew|HomeBrew]] 를 통해 설치 가능하다. brew install gradle-completion * ''$HOMEBREW_PREFIX/etc/bash_completion.d/'' 에 설치 되면 shell 을 재기동 하면 자동 적용된다. ===== install bash manual ===== * [[linux:bash|Bash]] manual 설정 - [[linux:bash:completion|bash completion]] # TODO mkdir -p $HOME/.local/share/bash-completion curl -LA gradle-completion https://edub.me/gradle-completion-bash -o $HOME/.local/share/bash-completion/gradle-completion.bash source $HOME/.local/share/bash-completion/gradle-completion.bash