diff options
| author | Julien Nicoulaud <julien.nicoulaud@gmail.com> | 2011-09-02 16:25:57 +0200 |
|---|---|---|
| committer | Julien Nicoulaud <julien.nicoulaud@gmail.com> | 2011-09-02 16:25:57 +0200 |
| commit | d4dac0f4a6a33abfedd743e77d0a7edc7186b00e (patch) | |
| tree | fd80f8d25e8ddde4161080fbcc5fa6de971f00d1 /_github | |
| parent | #23 github: complete 'track' command (diff) | |
| download | zsh-completions-d4dac0f4a6a33abfedd743e77d0a7edc7186b00e.tar zsh-completions-d4dac0f4a6a33abfedd743e77d0a7edc7186b00e.tar.gz zsh-completions-d4dac0f4a6a33abfedd743e77d0a7edc7186b00e.tar.bz2 zsh-completions-d4dac0f4a6a33abfedd743e77d0a7edc7186b00e.tar.lz zsh-completions-d4dac0f4a6a33abfedd743e77d0a7edc7186b00e.tar.xz zsh-completions-d4dac0f4a6a33abfedd743e77d0a7edc7186b00e.tar.zst zsh-completions-d4dac0f4a6a33abfedd743e77d0a7edc7186b00e.zip | |
#23 github: complete Github user names with 'github network list' output
Diffstat (limited to '_github')
| -rw-r--r-- | _github | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -201,8 +201,8 @@ _github() { (( $+functions[_github_users] )) || _github_users() { - # TODO Not implemented - _message -e users 'user' + local users; users=(${(f)"$(_call_program users $service network list)"}) + _describe -t users 'user' users "$@" } (( $+functions[_github_repos] )) || |
