gradle / gradle-completion

Gradle tab completion for bash and zsh
MIT License
1.02k stars 131 forks source link

No completion for options and options values from custom tasks #74

Open GianniGiglio opened 5 years ago

GianniGiglio commented 5 years ago

Probably a feature request:

The completion works for gradle custom tasks but it doesn't complete the options from the custom tasks.

example @Option(option = "type", description = "Set the type of project to generate.") public void setType(String type) { this.type = type; }

It would be great of we could have completion for options and options values from custom tasks