mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-30 05:40:58 +01:00
Chris Lamb: 27545: runserver_plus and files completion for django.
This commit is contained in:
parent
6e317e4b96
commit
f080ccb15a
2 changed files with 11 additions and 2 deletions
|
|
@ -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>
|
2009-12-18 Wayne Davison <wayned@users.sourceforge.net>
|
||||||
|
|
||||||
* users/14659: Src/hist.c: Add symlink-based hist-file locking.
|
* 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
|
* This is used by the shell to define $ZSH_PATCHLEVEL
|
||||||
* $Revision: 1.4848 $
|
* $Revision: 1.4849 $
|
||||||
*****************************************************
|
*****************************************************
|
||||||
|
|
|
||||||
|
|
@ -154,7 +154,7 @@ case $state in
|
||||||
)
|
)
|
||||||
;;
|
;;
|
||||||
|
|
||||||
runserver)
|
runserver|runserver_plus)
|
||||||
args+=(
|
args+=(
|
||||||
'--noreload[do not use auto-reloader]'
|
'--noreload[do not use auto-reloader]'
|
||||||
'--adminmedia=[directory from which to serve admin media]:directory:_directories'
|
'--adminmedia=[directory from which to serve admin media]:directory:_directories'
|
||||||
|
|
@ -199,6 +199,10 @@ case $state in
|
||||||
|
|
||||||
validate|runfcgi)
|
validate|runfcgi)
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
_files
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
_arguments $args && ret=0
|
_arguments $args && ret=0
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue