gitignore.plugin.zsh 252 B

123456789101112
  1. function gi() { curl http://gitignore.io/api/$@ ;}
  2. _gitignireio_get_command_list() {
  3. curl -s http://gitignore.io/api/list | tr "," "\n"
  4. }
  5. _gitignireio () {
  6. compset -P '*,'
  7. compadd -S '' `_gitignireio_get_command_list`
  8. }
  9. compdef _gitignireio gi