Changes between Version 25 and Version 26 of UsingVimWithDjango


Ignore:
Timestamp:
Oct 11, 2006, 6:34:37 AM (18 years ago)
Author:
Lllama
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UsingVimWithDjango

    v25 v26  
    22This page is intended to be used as a collection of hints for using the Vim editor with Django.
    33
    4  * Tips:
    5    * Vim Modeline
    6  * Plugins:
    7    * snippetsEmu
    8    * xmledit.vim
    9    * Project
    10  * Vim/IDE:
    11    * PIDA
    12  * Suggestions:
    13    * Django Project Manager
    144
     5[[TOC(inline, UsingVimWithDjango)]]
    156
    167== Tips ==
     
    144135In 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.
    145136
     137=== Comments ===
     138
     139These are some notes for anyone considering writing this plugin.
     140
     141 * Vim has the 'read' command which can read the output from a command into a buffer using the pling operator. E.g. :read !dir will read a directory listing into the current buffer.
     142 * Vim has special buffers for storing different types of output. See :help special-buffers and :help cwindow
     143 * The Project plugin has the function CreateEntriesFromDir() which can be used to create new entries. Passing '1' as the arguement will create a recursive entry which would be most appropriate for creating Django entries.
     144
     145It would be useful for the plugin to grab any tracebacks and place the cursor in a suitable spot.
Back to Top