mirror of
https://git.code.sf.net/p/zsh/code
synced 2026-01-30 13:04:08 +00:00
9 lines
177 B
Plaintext
9 lines
177 B
Plaintext
#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
|