mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-01-14 13:00:33 +08:00
13 lines
266 B
Bash
13 lines
266 B
Bash
function gi() { curl -L https://www.gitignore.io/api/$@ ;}
|
|
|
|
_gitignoreio_get_command_list() {
|
|
curl -s https://www.gitignore.io/api/list | tr "," "\n"
|
|
}
|
|
|
|
_gitignoreio () {
|
|
compset -P '*,'
|
|
compadd -S '' `_gitignoreio_get_command_list`
|
|
}
|
|
|
|
compdef _gitignoreio gi
|