From 33b1a3bcfed1d52d48a3a467f81da1599d2fa883 Mon Sep 17 00:00:00 2001
From: futjikato <m.spindelhirn@cashiers-check.de>
Date: Fri, 4 Oct 2013 22:29:33 +0200
Subject: [PATCH] Added gitignore plugin ( for gitignore.io )

---
 custom/plugins/gitignore/gitignore.plugin.zsh | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 custom/plugins/gitignore/gitignore.plugin.zsh

diff --git a/custom/plugins/gitignore/gitignore.plugin.zsh b/custom/plugins/gitignore/gitignore.plugin.zsh
new file mode 100644
index 000000000..1b866c0d0
--- /dev/null
+++ b/custom/plugins/gitignore/gitignore.plugin.zsh
@@ -0,0 +1,11 @@
+function gi() { curl http://gitignore.io/api/$@ ;}
+
+_gitignireio_get_command_list() {
+  curl -s http://gitignore.io/api/list | tr "," "\n"
+}
+
+_gitignireio () {
+  compadd `_gitignireio_get_command_list`
+}
+
+compdef _gitignireio gi
\ No newline at end of file
-- 
2.21.0