diff options
author | Marc Cornellà <marc.cornella@live.com> | 2018-10-28 13:51:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-28 13:51:45 +0100 |
commit | 99b94bbeac9d326c11e7104e0d07bf185df15ef6 (patch) | |
tree | d96c3c8a8101600c6975a4a8378654ecc8f8e197 | |
parent | f1250cfbce4dc08b1b4d147ff533fad0ca64d5e0 (diff) | |
parent | c87eea8bdb19aa3d3324158e83518140bf1c2b28 (diff) | |
download | zsh-99b94bbeac9d326c11e7104e0d07bf185df15ef6.tar.gz zsh-99b94bbeac9d326c11e7104e0d07bf185df15ef6.tar.bz2 zsh-99b94bbeac9d326c11e7104e0d07bf185df15ef6.zip |
grails: add README (#7362)
-rw-r--r-- | plugins/grails/README.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/grails/README.md b/plugins/grails/README.md new file mode 100644 index 000000000..6bf2ac1e6 --- /dev/null +++ b/plugins/grails/README.md @@ -0,0 +1,16 @@ +# Grails plugin + +Adds tab-completion of [Grails](https://grails.org/) script names to the command line use of grails. + +To use it, add `grails` to the plugins array in your zshrc file: + +```zsh +plugins=(... grails) +``` + +It looks for scripts in the following paths: + +- `$GRAILS_HOME/scripts` +- `~/.grails/scripts` +- `./scripts` +- `./plugins/*/scripts` |