1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-16 12:21:18 +02:00

Chris Lamb: 27545: runserver_plus and files completion for django.

This commit is contained in:
Clint Adams 2009-12-29 19:56:14 +00:00
parent 6e317e4b96
commit f080ccb15a
2 changed files with 11 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2009-12-28 Clint Adams <clint@zsh.org>
* Chris Lamb: 27545: Completion/Unix/Command/_django:
runserver_plus and files completion for django.
2009-12-18 Wayne Davison <wayned@users.sourceforge.net>
* users/14659: Src/hist.c: Add symlink-based hist-file locking.
@ -12518,5 +12523,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.4848 $
* $Revision: 1.4849 $
*****************************************************

View file

@ -154,7 +154,7 @@ case $state in
)
;;
runserver)
runserver|runserver_plus)
args+=(
'--noreload[do not use auto-reloader]'
'--adminmedia=[directory from which to serve admin media]:directory:_directories'
@ -199,6 +199,10 @@ case $state in
validate|runfcgi)
;;
*)
_files
;;
esac
_arguments $args && ret=0