blob: f7018348b297c34f3e8174e968305ac0d6f20c51 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#compdef gitignoreio
_gitignoreio_get_command_list() {
curl -sL https://www.toptal.com/developers/gitignore/api/list | tr "," "\n"
}
compset -P '*,'
compadd -S '' `_gitignoreio_get_command_list`
|