Wenbing Li e61228282a gradle: fix command option name in completion (#6586) 4 年之前
..
README.md 6f24f4a18a gradle: add README (#7211) 5 年之前
_gradle e46843685c Improve gradle plugin task parsing (#5230) 7 年之前
_gradlew e46843685c Improve gradle plugin task parsing (#5230) 7 年之前
gradle.plugin.zsh e61228282a gradle: fix command option name in completion (#6586) 4 年之前

README.md

Gradle Plugin

This plugin adds completions and aliases for Gradle.

To use it, add gradle to the plugins array in your zshrc file:

plugins=(... gradle)

Usage

This plugin creates an alias gradle which is used to determine whether the current working directory has a gradlew file. If gradlew is present it will be used otherwise gradle is used directly. Gradle tasks can be executed directly without regard for whether it is gradle or gradlew

Examples:

gradle test
gradle build

Completion

The completion provided for this plugin caches the parsed tasks into a file named .gradletasknamecache in the current working directory, so you might want to add that to your .gitignore file so that it's not accidentally committed.