]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/gitignore/gitignore.plugin.zsh
...
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / gitignore / gitignore.plugin.zsh
1 function gi() { curl -fLw '\n' https://www.gitignore.io/api/"${(j:,:)@}" }
2
3 _gitignoreio_get_command_list() {
4   curl -sfL https://www.gitignore.io/api/list | tr "," "\n"
5 }
6
7 _gitignoreio () {
8   compset -P '*,'
9   compadd -S '' `_gitignoreio_get_command_list`
10 }
11
12 compdef _gitignoreio gi