blob: ba1b38711b8cda436ab91a177e4846b45c7189ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
function gi() { curl -sL https://www.gitignore.io/api/${(j:,:)@} }
_gitignoreio_get_command_list() {
curl -sL https://www.gitignore.io/api/list | tr "," "\n"
}
_gitignoreio () {
compset -P '*,'
compadd -S '' `_gitignoreio_get_command_list`
}
compdef _gitignoreio gi
|