gitignore.plugin.zsh 276 Bytes
Newer Older
1
function gi() { curl -fL https://www.gitignore.io/api/${(j:,:)@} }
2

3
_gitignoreio_get_command_list() {
Parham Alvani's avatar
Parham Alvani committed
4
  curl -sfL https://www.gitignore.io/api/list | tr "," "\n"
5
6
}

7
_gitignoreio () {
8
  compset -P '*,'
9
  compadd -S '' `_gitignoreio_get_command_list`
10
11
}

12
compdef _gitignoreio gi