about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2008-11-11 12:13:50 +0000
committerClint Adams <clint@users.sourceforge.net>2008-11-11 12:13:50 +0000
commit0e8d56723a6d695104c62793e11a15fdb59949b6 (patch)
treec28a28a7c069576375b4be6edab57aa5c6ad9afc /Completion
parent1fa2d1e6e556e0f68f755aa64d0b232e34e5b8fd (diff)
downloadzsh-0e8d56723a6d695104c62793e11a15fdb59949b6.tar.gz
zsh-0e8d56723a6d695104c62793e11a15fdb59949b6.tar.xz
zsh-0e8d56723a6d695104c62793e11a15fdb59949b6.zip
26023: skeletal completion for tg (topgit).
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Unix/Command/_topgit8
1 files changed, 8 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_topgit b/Completion/Unix/Command/_topgit
new file mode 100644
index 000000000..f447456d1
--- /dev/null
+++ b/Completion/Unix/Command/_topgit
@@ -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