about summary refs log tree commit diff
path: root/Completion/Unix/Command/_django
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2009-03-01 16:14:33 +0000
committerClint Adams <clint@users.sourceforge.net>2009-03-01 16:14:33 +0000
commite47333d0a907293d57d90b4c922f17d7ab0207d5 (patch)
tree1e8f012e2b8cb116d97d4e02d0f901b8f915225d /Completion/Unix/Command/_django
parent05a7f19f69068cc0e75eebb7dee85e59af9a6196 (diff)
downloadzsh-e47333d0a907293d57d90b4c922f17d7ab0207d5.tar.gz
zsh-e47333d0a907293d57d90b4c922f17d7ab0207d5.tar.xz
zsh-e47333d0a907293d57d90b4c922f17d7ab0207d5.zip
Chris Lamb: 26655: complete custom Django management commands.
Diffstat (limited to 'Completion/Unix/Command/_django')
-rw-r--r--Completion/Unix/Command/_django9
1 files changed, 9 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_django b/Completion/Unix/Command/_django
index 82d5910f3..20d93c376 100644
--- a/Completion/Unix/Command/_django
+++ b/Completion/Unix/Command/_django
@@ -57,6 +57,15 @@ case $state in
       "testserver:run a development server with data from the given fixture(s)"
       "validate:validate all installed modules"
     )
+
+    for cmd in $(./manage.py --help 2>&1 >/dev/null | \
+        awk -vdrop=1 '{ if (!drop) print substr($0, 3) } /^Available subcommands/ { drop=0 }')
+    do
+        if ! echo $subcommands | grep -qs "${cmd}:"
+        then
+            subcommands+=($cmd)
+        fi
+    done
     
     _describe -t subcommands 'django admin subcommand' subcommands && ret=0
     ;;