blob: f447456d17c7f1b091f68d2abdc98696ad1ea50e (
plain) (
blame)
1
2
3
4
5
6
7
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
|