Changes between Version 25 and Version 26 of UsingVimWithDjango
- Timestamp:
- Oct 11, 2006, 6:34:37 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsingVimWithDjango
v25 v26 2 2 This page is intended to be used as a collection of hints for using the Vim editor with Django. 3 3 4 * Tips:5 * Vim Modeline6 * Plugins:7 * snippetsEmu8 * xmledit.vim9 * Project10 * Vim/IDE:11 * PIDA12 * Suggestions:13 * Django Project Manager14 4 5 [[TOC(inline, UsingVimWithDjango)]] 15 6 16 7 == Tips == … … 144 135 In 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. 145 136 137 === Comments === 138 139 These 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 145 It would be useful for the plugin to grab any tracebacks and place the cursor in a suitable spot.