Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH] Added completion for `django-admin startproject`
- X-seq: zsh-workers 41409
- From: Marcin Mielniczuk <marmistrzmar@xxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH] Added completion for `django-admin startproject`
- Date: Mon, 10 Jul 2017 20:02:36 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=to:from:subject:message-id:date:user-agent:mime-version :content-language; bh=dALRPOnDTB3CGWRVItpN3LNtd+FDLJn3tafqQVrzIu4=; b=dmlJsdFNGJVIZCDcJm9pd9yVaf7g7MdMzEo+1JQ1E4MqcgIDNticrtdVXEFG0rSrqO QIsLUzNu5Gqmn4BXgRcFA/r6O+VPG6C0LPwYMzDZSeE0U2uyrEqvAOPiz5X9ULYDpD0g n258kdp8ntVwg90MdFG5PnyWC0gz1Vk1bSMyMEuo8XwL2UOWtZhHLv78c+fBWX2R5GgQ FHKyR4sITyrDb/xz8dCatP2GOti+JhIMtnoU5gUQy4VtsB3I27ATpp6F32G9b3y6D7yL WzDf4T3KzfgWnmjcpGOJM8b4nodX6GJ48rv29ssTQO8cJS6u7/CpeY2SOXWyUsQ6Fkop CFcg==
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
Hi!
I noticed that this completion was missing, so just went ahead and added
it :)
I couldn't find the preferred method of contributing, so I attach the
commit.
I'm not subscribed, so please make sure to cc me.
Regards,
Marcin Mielniczuk
commit 9f3f81a1872e0cf9c599f99a63246620ff522422
Author: Marcin Mielniczuk <marmistrz.dev@xxxxxxxxx>
Date: Mon Jul 10 20:00:16 2017 +0200
Add completion for django-admin startproject
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)"
Messages sorted by:
Reverse Date,
Date,
Thread,
Author