From ac2ccb753521c279fc17ae26e33359f7dec9d527 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Z=C3=BChlke?= Date: Sun, 28 Oct 2018 12:21:29 +0100 Subject: [PATCH 1/3] add readme for grails plugin --- plugins/grails/README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 plugins/grails/README.md 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) +``` From 4e59ba755cb75793582566eacc6f042cb8f2461b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Cornell=C3=A0?= Date: Sun, 28 Oct 2018 13:50:34 +0100 Subject: [PATCH 2/3] move path section after plugin-enabling section --- plugins/grails/README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/plugins/grails/README.md b/plugins/grails/README.md index 1b0eda1dd..9d69b161e 100644 --- a/plugins/grails/README.md +++ b/plugins/grails/README.md @@ -1,15 +1,16 @@ # 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) ``` + +It looks for scripts in the following paths: + +- `$GRAILS_HOME/scripts` +- `~/.grails/scripts` +- `./scripts` +- `./plugins/*/scripts` From c87eea8bdb19aa3d3324158e83518140bf1c2b28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Cornell=C3=A0?= Date: Sun, 28 Oct 2018 13:51:26 +0100 Subject: [PATCH 3/3] add link --- plugins/grails/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/grails/README.md b/plugins/grails/README.md index 9d69b161e..6bf2ac1e6 100644 --- a/plugins/grails/README.md +++ b/plugins/grails/README.md @@ -1,6 +1,6 @@ # Grails plugin -Adds tab-completion of Grails script names to the command line use of grails. +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: