Changes between Version 21 and Version 22 of UsingVimWithDjango


Ignore:
Timestamp:
Oct 10, 2006, 3:41:55 PM (18 years ago)
Author:
panosl
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UsingVimWithDjango

    v21 v22  
    1010 * Vim/IDE:
    1111   * PIDA
     12 * Suggestions:
     13   * Django Project Manager
    1214
    1315
     
    115117
    116118Although this is not Django-specific (I don't think some of the other stuff in here is very Django-specific either), [http://pida.berlios.de PIDA] looks like a pretty nice IDE environment for VIM+Python, which would therefore help you out in Django :).
     119
     120
     121== Suggestions ==
     122=== Django Project Manager: By panosl ===
     123
     124The idea is to create a plugin, that will wrap the functionality of django-admin (and if it's useful manage.py) along with project.vim.
     125
     126This will one to create a new django project from within vim, and generating a Project file with all the files pre-specified. This could be extended to allow, the creation of apps within the project, leveraging the usage of manage.py.
     127
     128So a regular session would be:
     129
     130:djsp [projectname]
     131    This will in turn generate the required Project file with all the files of the project.
     132
     133:djsa [appname]
     134    This will create a new app, and update the Project file with the new data regarding the application.
     135
     136
     137At this point, this is enough, even though we could still wrap a bit more of django-admin/manage, by allowing inner commands to launch/stop the test server and similar additions.
     138
     139In my opinion this would help with django development and help focus more on the development that usually happens within the editor, which in our case, is ofcourse (G)Vim.
     140
Back to Top