Changes between Version 59 and Version 60 of UsingVimWithDjango


Ignore:
Timestamp:
Sep 9, 2013, 2:24:25 AM (11 years ago)
Author:
Jean-Marie Comets
Comment:

Pony.vim was updated (new owner, new functionalities). More detailed description added and url changed.

Legend:

Unmodified
Added
Removed
Modified
  • UsingVimWithDjango

    v59 v60  
    211211== Pony.vim ==
    212212
    213 Pony.vim is a plugin for working with Django projects. Visit the [https://github.com/rainerborene/vim-pony/ repository] on GitHub for more information.
     213Pony.vim is a plugin for working with Django projects.
     214Basic go-to-file commands are available for common Django files, with tab-completion for app names :
     215
     216    - :Dadmin [app] -> [app]/admin.py
     217    - :Dmodels [app] -> [app]/models.py
     218    - :Dsettings [app] -> [app]/settings.py
     219    - :Dtests [app] -> [app]/tests.py
     220    - :Durls [app] -> [app]/urls.py
     221    - Dviews [app] -> [app]/views.py
     222
     223The manage.py script is wrapped with completion and a few shortcuts :
     224
     225    - :Dmanage -> manage.py
     226    - :Drunserver -> manage.py runserver
     227    - :Dsyncdb -> manage.py syncdb
     228    - :Dshell -> manage.py shell
     229    - :Ddbshell -> manage.py dbshell
     230
     231Visit the [https://github.com/jmcomets/vim-pony/ repository] on GitHub for more information.
    214232
    215233== Eclipse ==
Back to Top