mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 21:39:48 +01:00
Improved gradle options (arguments) completion (#5743)
* Sort gradle options for autocompletion This will allow us to more easily keep the options list up-to-date * Add missing gradle options to gradle plugin Reflect documentation at https://docs.gradle.org/3.2.1/userguide/gradle_command_line.html
This commit is contained in:
parent
9f8b2b42bd
commit
4608231b25
1 changed files with 52 additions and 21 deletions
|
@ -24,29 +24,60 @@ function _gradle_core_commands() {
|
||||||
function _gradle_arguments() {
|
function _gradle_arguments() {
|
||||||
_arguments -C \
|
_arguments -C \
|
||||||
'-a[Do not rebuild project dependencies]' \
|
'-a[Do not rebuild project dependencies]' \
|
||||||
'-h[Help]' \
|
'-b[Specifies the build file]' \
|
||||||
'-D[System property]' \
|
'-c[Specifies the settings file]' \
|
||||||
'-d[Log at the debug level]' \
|
'-d[Log at the debug level]' \
|
||||||
'--gui[Launches the Gradle GUI app]' \
|
'-g[Specifies the Gradle user home directory]' \
|
||||||
'--stop[Stop the Gradle daemon]' \
|
'-h[Shows a help message]' \
|
||||||
'--daemon[Use the Gradle daemon]' \
|
'-i[Set log level to INFO]' \
|
||||||
'--no-daemon[Do not use the Gradle daemon]' \
|
'-m[Runs the build with all task actions disabled]' \
|
||||||
'--rerun-task [Specifies that any task optimization is ignored.]' \
|
'-p[Specifies the start directory for Gradle]' \
|
||||||
'-i[Log at the info level]' \
|
'-q[Log errors only]' \
|
||||||
'-m[Dry run]' \
|
'-s[Print out the stacktrace also for user exceptions]' \
|
||||||
'-P[Set a project property]' \
|
'-t[Continuous mode. Automatically re-run build after changes]' \
|
||||||
'-p[Specifies the start directory]' \
|
'-u[Don''t search in parent directories for a settings.gradle file]' \
|
||||||
'--profile[Profile the build time]' \
|
'-v[Prints Gradle version info]' \
|
||||||
'-q[Log at the quiet level (only show errors)]' \
|
|
||||||
'-v[Print the Gradle version info]' \
|
|
||||||
'-x[Specify a task to be excluded]' \
|
'-x[Specify a task to be excluded]' \
|
||||||
'-b[Specifies the build file.]' \
|
'-D[Set a system property]' \
|
||||||
'-c[Specifies the settings file.]' \
|
'-I[Specifies an initialization script]' \
|
||||||
'--continue[Continues task execution after a task failure.]' \
|
'-P[Sets a project property of the root project]' \
|
||||||
'-g[Specifies the Gradle user home directory.]' \
|
'-S[Print out the full (very verbose) stacktrace]' \
|
||||||
'-I[Specifies an initialization script.]' \
|
'--build-file[Specifies the build file]' \
|
||||||
'--refresh-dependencies[Refresh the state of dependencies.]' \
|
'--configure-on-demand[Only relevant projects are configured]' \
|
||||||
'-u[Don''t search in parent directories for a settings.gradle file.]' \
|
'--console[Type of console output to generate (plain, auto, or rich)]' \
|
||||||
|
'--continue[Continues task execution after a task failure]' \
|
||||||
|
'--continuous[Continuous mode. Automatically re-run build after changes]' \
|
||||||
|
'--daemon[Use the Gradle Daemon]' \
|
||||||
|
'--debug[Log at the debug level]' \
|
||||||
|
'--dry-run[Runs the build with all task actions disabled]' \
|
||||||
|
'--exclude-task[Specify a task to be excluded]' \
|
||||||
|
'--full-stacktrace[Print out the full (very verbose) stacktrace]' \
|
||||||
|
'--gradle-user-home[Specifies the Gradle user home directory]' \
|
||||||
|
'--gui[Launches the Gradle GUI app (Deprecated)]' \
|
||||||
|
'--help[Shows a help message]' \
|
||||||
|
'--include-build[Run the build as a composite, including the specified build]' \
|
||||||
|
'--info[Set log level to INFO]' \
|
||||||
|
'--init-script[Specifies an initialization script]' \
|
||||||
|
'--max-workers[Set the maximum number of workers that Gradle may use]' \
|
||||||
|
'--no-daemon[Do not use the Gradle Daemon]' \
|
||||||
|
'--no-rebuild[Do not rebuild project dependencies]' \
|
||||||
|
'--no-search-upwards[Don''t search in parent directories for a settings.gradle file]' \
|
||||||
|
'--offline[Build without accessing network resources]' \
|
||||||
|
'--parallel[Build projects in parallel]' \
|
||||||
|
'--profile[Profile build time and create report]' \
|
||||||
|
'--project-cache-dir[Specifies the project-specific cache directory]' \
|
||||||
|
'--project-dir[Specifies the start directory for Gradle]' \
|
||||||
|
'--project-prop[Sets a project property of the root project]' \
|
||||||
|
'--quiet[Log errors only]' \
|
||||||
|
'--recompile-scripts[Forces scripts to be recompiled, bypassing caching]' \
|
||||||
|
'--refresh-dependencies[Refresh the state of dependencies]' \
|
||||||
|
'--rerun-task[Specifies that any task optimization is ignored]' \
|
||||||
|
'--settings-file[Specifies the settings file]' \
|
||||||
|
'--stacktrace[Print out the stacktrace also for user exceptions]' \
|
||||||
|
'--status[Print Gradle Daemon status]' \
|
||||||
|
'--stop[Stop all Gradle Daemons]' \
|
||||||
|
'--system-prop[Set a system property]' \
|
||||||
|
'--version[Prints Gradle version info]' \
|
||||||
'*::command:->command' \
|
'*::command:->command' \
|
||||||
&& return 0
|
&& return 0
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue