0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/gitignore/gitignore.plugin.zsh

13 lines
322 B
Bash
Raw Permalink Normal View History

function gi() { curl -fLw '\n' https://www.toptal.com/developers/gitignore/api/"${(j:,:)@}" }
2014-10-15 15:33:49 +02:00
_gitignoreio_get_command_list() {
curl -sfL https://www.toptal.com/developers/gitignore/api/list | tr "," "\n"
}
2014-10-15 15:33:49 +02:00
_gitignoreio () {
compset -P '*,'
2014-10-15 15:33:49 +02:00
compadd -S '' `_gitignoreio_get_command_list`
}
2014-10-15 15:33:49 +02:00
compdef _gitignoreio gi