1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-27 04:40:59 +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

@ -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