From e47333d0a907293d57d90b4c922f17d7ab0207d5 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Sun, 1 Mar 2009 16:14:33 +0000 Subject: Chris Lamb: 26655: complete custom Django management commands. --- Completion/Unix/Command/_django | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'Completion/Unix/Command/_django') 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 ;; -- cgit 1.4.1