1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-30 05:40:58 +01:00

26023: skeletal completion for tg (topgit).

This commit is contained in:
Clint Adams 2008-11-11 12:13:50 +00:00
parent 1fa2d1e6e5
commit 0e8d56723a
2 changed files with 13 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2008-11-11 Clint Adams <clint@zsh.org>
* 26023: Completion/Unix/Command/_topgit: skeletal completion for
tg (topgit).
2008-11-08 Oliver Kiddle <opk@zsh.org> 2008-11-08 Oliver Kiddle <opk@zsh.org>
* 26022: Completion/Zsh/Type/_file_descriptors: fix on Solaris * 26022: Completion/Zsh/Type/_file_descriptors: fix on Solaris

View file

@ -0,0 +1,8 @@
#compdef tg
local expl
if (( CURRENT == 2 )); then
_wanted subcmd expl 'topgit command' compadd create delete export import info patch remote summary update
else
_files
fi