diff options
author | Marco Zühlke <mzuehlke@gmail.com> | 2018-10-28 12:21:29 +0100 |
---|---|---|
committer | Marco Zühlke <mzuehlke@gmail.com> | 2018-10-28 12:21:29 +0100 |
commit | ac2ccb753521c279fc17ae26e33359f7dec9d527 (patch) | |
tree | ee65b6401456cc621ba366c9181fcdb785f3d62b /plugins/grails/README.md | |
parent | f96d18ca935f9b9bd6f1c51cb5c821a0b18e9601 (diff) | |
download | zsh-ac2ccb753521c279fc17ae26e33359f7dec9d527.tar.gz zsh-ac2ccb753521c279fc17ae26e33359f7dec9d527.tar.bz2 zsh-ac2ccb753521c279fc17ae26e33359f7dec9d527.zip |
add readme for grails plugin
Diffstat (limited to 'plugins/grails/README.md')
-rw-r--r-- | plugins/grails/README.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/plugins/grails/README.md b/plugins/grails/README.md new file mode 100644 index 000000000..1b0eda1dd --- /dev/null +++ b/plugins/grails/README.md @@ -0,0 +1,15 @@ +# Grails plugin + +Adds tab-completion of Grails script names to the command line use of grails. +Looks for scripts in the following paths: + +- `$GRAILS_HOME/scripts` +- `~/.grails/scripts` +- `./scripts` +- `./plugins/*/scripts` + +To use it, add `grails` to the plugins array in your zshrc file: + +```zsh +plugins=(... grails) +``` |