about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Unix/Command/_topgit8
2 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f2d86cc90..4b5ac3b5b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
 	* 26022: Completion/Zsh/Type/_file_descriptors: fix on Solaris
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