From e03fe0c3019e6359705f5234cbba4b6e389ab5a4 Mon Sep 17 00:00:00 2001 From: Denys Dovhan Date: Wed, 3 Oct 2018 16:12:26 +0300 Subject: [PATCH 1/2] Add README.md to gulp plugin. Issue #7175 --- plugins/gulp/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 plugins/gulp/README.md diff --git a/plugins/gulp/README.md b/plugins/gulp/README.md new file mode 100644 index 000000000..eae1b66ad --- /dev/null +++ b/plugins/gulp/README.md @@ -0,0 +1,8 @@ +# gulp plugin + +This plugin adds autocompletion for your `gulp` tasks. It grabs all available tasks from the `gulpfile.js` in the current directory. + +To use it, add `gulp` to the plugins array of your `.zshrc` file: +``` +plugins=(... gulp) +``` From 8bc176f1248c3ade50fb831afd60f3bc044f8ae4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Cornell=C3=A0?= Date: Wed, 3 Oct 2018 17:56:27 +0200 Subject: [PATCH 2/2] add link --- plugins/gulp/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/gulp/README.md b/plugins/gulp/README.md index eae1b66ad..4ed2b99b3 100644 --- a/plugins/gulp/README.md +++ b/plugins/gulp/README.md @@ -1,6 +1,6 @@ # gulp plugin -This plugin adds autocompletion for your `gulp` tasks. It grabs all available tasks from the `gulpfile.js` in the current directory. +This plugin adds autocompletion for your [`gulp`](https://gulpjs.com/) tasks. It grabs all available tasks from the `gulpfile.js` in the current directory. To use it, add `gulp` to the plugins array of your `.zshrc` file: ```