You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
function gi() { curl http://gitignore.io/api/$@ ;} |
|
|
|
_gitignireio_get_command_list() { |
|
curl -s http://gitignore.io/api/list | tr "," "\n" |
|
} |
|
|
|
_gitignireio () { |
|
compset -P '*,' |
|
compadd -S '' `_gitignireio_get_command_list` |
|
} |
|
|
|
compdef _gitignireio gi |