diff options
author | Marcin Mielniczuk <marmistrz.dev@gmail.com> | 2017-07-10 20:07:00 +0200 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2017-07-11 09:13:51 +0100 |
commit | 050f752ed22e1768e981968c48f5a432e390ad40 (patch) | |
tree | ba55fc93d7803f910329342033306697606797f9 | |
parent | 2b3a4d18511924583215bffaa162f07da8ebe456 (diff) | |
download | zsh-050f752ed22e1768e981968c48f5a432e390ad40.tar.gz zsh-050f752ed22e1768e981968c48f5a432e390ad40.tar.xz zsh-050f752ed22e1768e981968c48f5a432e390ad40.zip |
41409: complete "django startproject"
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Command/_django | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index ff1310129..7f4581d3d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2017-07-11 Peter Stephenson <p.stephenson@samsung.com> + + * Marcin Mielniczuk: 41409: Completion/Unix/Command/_django: + complete "django startproject". + 2017-07-09 Peter Stephenson <p.w.stephenson@ntlworld.com> * unposted: Config/version.mk: update dev version due to diff --git a/Completion/Unix/Command/_django b/Completion/Unix/Command/_django index 029687696..9eaa2284a 100644 --- a/Completion/Unix/Command/_django +++ b/Completion/Unix/Command/_django @@ -49,6 +49,7 @@ case $state in "sqlreset:print the DROP TABLE and CREATE TABLE statements for the given app(s)" "sqlsequencereset:print the SQL statements for resetting sequences for the given app(s)" "startapp:create Django app directory in this project's directory" + "startproject:create a Django project directory structure for a given project name" "syncdb:create database tables for apps in INSTALLED_APPS where required" "test:run the test suite for the specified app, or the entire site" "testserver:run a development server with data from the given fixture(s)" |