summaryrefslogtreecommitdiff
path: root/plugins/gitignore/gitignore.plugin.zsh
blob: a687f5cce2893b1973ba578cebc04fe8c93c74bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
function gi() { curl -fLw '\n' https://www.gitignore.io/api/"${(j:,:)@}" }

_gitignoreio_get_command_list() {
  curl -sfL https://www.gitignore.io/api/list | tr "," "\n"
}

_gitignoreio () {
  compset -P '*,'
  compadd -S '' `_gitignoreio_get_command_list`
}

compdef _gitignoreio gi